This repository was archived by the owner on Jan 22, 2026. It is now read-only.
remove lrclib #37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "[master] Release" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - "**/*.md" | |
| - ".vscode/**" | |
| workflow_dispatch: | |
| jobs: | |
| Build: | |
| uses: ./.github/workflows/build.yml | |
| Release: | |
| name: Release latest on GitHub | |
| needs: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download All Artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: luna-artifacts | |
| path: ./dist/ | |
| - name: Publish latest release on GitHub | |
| uses: marvinpinto/action-automatic-releases@latest | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| automatic_release_tag: latest | |
| prerelease: false | |
| title: Latest Release | |
| files: ./dist/** |