-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
|
@@ -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 | ||
|