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 872d743 commit d8da7e5Copy full SHA for d8da7e5
.github/workflows/dotnet.yml
@@ -60,8 +60,7 @@ jobs:
60
- name: Zip App
61
run: |
62
cd release
63
- tar -cvf zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip *
64
- cd ..
+ tar -cvf ../zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip *
65
66
# Creates a new TAG version
67
- name: Create release
@@ -84,6 +83,6 @@ jobs:
84
83
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85
with:
86
upload_url: ${{ steps.create_release.outputs.upload_url }}
87
- asset_path: ./release/zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip
+ asset_path: ./zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip
88
asset_name: zero2undub_v${{ steps.gitversion.outputs.majorMinorPatch }}.zip
89
asset_content_type: application/zip
0 commit comments