[READ-ONLY] Mirror of https://github.com/probablykasper/mr-tagger. Music file tagging app for Mac, Linux and Windows
audio linux macos music tagger tauri windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Publish on tag push

Kasper (Dec 13, 2021, 9:32 PM +0100) 378ac2af cd1dd70d

+6 -3
+5 -2
.github/workflows/publish.yml
··· 1 1 name: Publish 2 2 on: 3 + push: 4 + tags: 5 + - 'v*' 3 6 workflow_dispatch: 4 7 5 8 env: ··· 41 44 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 42 45 with: 43 46 # the action automatically replaces __VERSION__ with the app version 44 - tagName: v__VERSION__ 45 - releaseName: 'v__VERSION__' 47 + tagName: ${{ github.ref_name }} 48 + releaseName: ${{ github.ref_name }} 46 49 releaseDraft: true 47 50 prerelease: false
+1 -1
.github/workflows/test.yml
··· 11 11 CARGO_TERM_COLOR: always 12 12 13 13 jobs: 14 - ci: 14 + test: 15 15 strategy: 16 16 fail-fast: false 17 17 matrix: