Skip to content

Commit

Permalink
Change .tar file to .tar.gz to reflect gzip compression. (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
Revival8697 authored Feb 9, 2025
1 parent 63b8b8f commit 81c605e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: npm run version-writer

# Create package archive
- name: Create package artifact (tar)
- name: Create package artifact (tar.gz)
run: tar -C ./package -czvf package.tar.gz .

- name: Create package artifact (zip)
Expand All @@ -93,12 +93,12 @@ jobs:
path: ./CnCNet5_YR_Installer.exe
if-no-files-found: error

# Upload package archive (tar) to any relevant releases for current tag
# Upload package archive (tar.gz) to any relevant releases for current tag
# If there is no release/tag, this will not do anything
- name: Upload Package Release Asset (tar)
- name: Upload Package Release Asset (tar.gz)
if: github.event_name == 'release'
working-directory: tools
run: npm run release-asset-uploader -- --token ${{ secrets.GITHUB_TOKEN }} --assetName "package_${{env.GitVersion_SemVer}} (tar)" --assetPath ../package.tar.gz
run: npm run release-asset-uploader -- --token ${{ secrets.GITHUB_TOKEN }} --assetName "package_${{env.GitVersion_SemVer}} (tar.gz)" --assetPath ../package.tar.gz

# Upload package archive (zip) to any relevant releases for current tag
# If there is no release/tag, this will not do anything
Expand Down

0 comments on commit 81c605e

Please sign in to comment.