Skip to content

Commit

Permalink
Fix artifact compression
Browse files Browse the repository at this point in the history
  • Loading branch information
cachapa committed Apr 24, 2024
1 parent 6ec35f1 commit d0e6b1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:

- name: Create archive
working-directory: build/linux/x64/release/bundle
run: tar -acf tudo_linux_x86_64.tar.gz *
run: zip -r tudo_linux_x86_64.zip *

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: linux_x86_64
path: build/linux/x64/release/bundle/tudo_linux_x86_64.tar.gz
path: build/linux/x64/release/bundle/tudo_linux_x86_64.zip
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,5 @@ jobs:
android/bundle/release/tudo_android.aab
android/apk/release/tudo_android.apk
ios/tudo_ios.ipa
linux_x86_64/tudo_linux_x86_64.tar.gz
linux_x86_64/tudo_linux_x86_64.zip
web/tudo_web.zip
2 changes: 1 addition & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Create archive
working-directory: build/web
run: zip tudo_web.zip *
run: zip -r tudo_web.zip *

- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit d0e6b1b

Please sign in to comment.