We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4717166 commit bcf3b90Copy full SHA for bcf3b90
.github/workflows/dotnet.yml
@@ -37,7 +37,7 @@ jobs:
37
run: dotnet test --no-build --verbosity normal
38
39
- name: Publish
40
- run: dotnet publish -c Release -p:PublishSingleFile=true -r win-x64 -o ./
+ run: dotnet publish -c Release /p:DebugType=None -o ./release
41
42
# Setups the env vars for gitversion
43
- uses: gittools/actions/gitversion/[email protected]
@@ -59,7 +59,7 @@ jobs:
59
# Zips the binaries and required files
60
- name: Zip App
61
run: |
62
- tar -cf zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip Zero2Undub.exe DeLESS.exe MFAudio.exe
+ tar -zcvf zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip release
63
64
# Creates a new TAG version
65
- name: Create release
0 commit comments