We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8518e03 commit 46e9f74Copy full SHA for 46e9f74
1 file changed
.github/workflows/create-release-on-version-update.yml
@@ -57,7 +57,7 @@ jobs:
57
- name: Create archive
58
if: env.version_updated == 'true'
59
run: |
60
- zip -r DiscordAPI-${VERSION}.zip .
+ zip -r DiscordAPI.zip . -x '.git/*'
61
62
# Create the changelog URL if the version has been updated
63
- name: Generate changelog URL
@@ -93,6 +93,6 @@ jobs:
93
uses: actions/upload-release-asset@v1
94
with:
95
upload_url: ${{ steps.create_release.outputs.upload_url }}
96
- asset_path: DiscordAPI-${VERSION}.zip
97
- asset_name: DiscordAPI-${VERSION}.zip
+ asset_path: DiscordAPI.zip
+ asset_name: DiscordAPI.zip
98
asset_content_type: application/zip
0 commit comments