Skip to content

Commit 81c605e

Browse files
authored
Change .tar file to .tar.gz to reflect gzip compression. (#448)
1 parent 63b8b8f commit 81c605e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deployment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: npm run version-writer
6767

6868
# Create package archive
69-
- name: Create package artifact (tar)
69+
- name: Create package artifact (tar.gz)
7070
run: tar -C ./package -czvf package.tar.gz .
7171

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

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

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

0 commit comments

Comments
 (0)