From bcf3b90e82b9242f333de2e7c4b01c221964e246 Mon Sep 17 00:00:00 2001 From: William Adam-Grenier Date: Sat, 17 Jul 2021 22:11:56 -0400 Subject: [PATCH] Update dotnet.yml --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 791764f..f9dd653 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -37,7 +37,7 @@ jobs: run: dotnet test --no-build --verbosity normal - name: Publish - run: dotnet publish -c Release -p:PublishSingleFile=true -r win-x64 -o ./ + run: dotnet publish -c Release /p:DebugType=None -o ./release # Setups the env vars for gitversion - uses: gittools/actions/gitversion/setup@v0.9.7 @@ -59,7 +59,7 @@ jobs: # Zips the binaries and required files - name: Zip App run: | - 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 # Creates a new TAG version - name: Create release