Skip to content

Commit

Permalink
Fix CI/CD by adding quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
sabihoshi committed May 29, 2021
1 parent 23e63b4 commit b48c9cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
run: dotnet publish GenshinLyreMidiPlayer.WPF -r win-x64 -c Release -o .\output --self-contained false -p:PublishSingleFile=true

- name: Zip release
run: 7z a GenshinLyreMidiPlayer_${{ steps.tag.outputs.VERSION }}_win-x64.zip .\output\* -x!*.pdb
run: 7z a GenshinLyreMidiPlayer_${{ steps.tag.outputs.VERSION }}_win-x64.zip .\output\* '-xr!*.pdb'

- name: 7Zip release
run: 7z a GenshinLyreMidiPlayer_${{ steps.tag.outputs.VERSION }}_win-x64.7z .\output\* -x!*.pdb
run: 7z a GenshinLyreMidiPlayer_${{ steps.tag.outputs.VERSION }}_win-x64.7z .\output\* '-xr!*.pdb'

- name: Create Release
uses: ncipollo/[email protected]
Expand Down

0 comments on commit b48c9cf

Please sign in to comment.