Skip to content

Updated README to mention that filename-based cover art is supported #943

Updated README to mention that filename-based cover art is supported

Updated README to mention that filename-based cover art is supported #943

Workflow file for this run

name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v3
with:
context: .
tags: retro-go:latest
cache-from: type=gha
cache-to: type=gha,mode=max
load: true
- name: Extract binaries from docker image
run: |
docker run --rm -v $(pwd)/build:/build retro-go:latest sh -c "cp /app/*.fw /build"
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: binaries
path: build/*.fw