Skip to content

Commit 872d743

Browse files
authored
Update dotnet.yml
1 parent bcf3b90 commit 872d743

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ jobs:
5959
# Zips the binaries and required files
6060
- name: Zip App
6161
run: |
62-
tar -zcvf zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip release
62+
cd release
63+
tar -cvf zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip *
64+
cd ..
6365
6466
# Creates a new TAG version
6567
- name: Create release
@@ -82,6 +84,6 @@ jobs:
8284
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8385
with:
8486
upload_url: ${{ steps.create_release.outputs.upload_url }}
85-
asset_path: ./zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip
87+
asset_path: ./release/zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip
8688
asset_name: zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip
8789
asset_content_type: application/zip

0 commit comments

Comments
 (0)