Skip to content

feat(download): add fallback to original artwork URL and tests #7

feat(download): add fallback to original artwork URL and tests

feat(download): add fallback to original artwork URL and tests #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Build binaries
run: |
make release
ls -l bin/
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
bin/*
generate_release_notes: true
draft: false
prerelease: false