Skip to content

Commit

Permalink
🐛 Fix bug where build scripts were not uploading mac packages (#1260)
Browse files Browse the repository at this point in the history
  • Loading branch information
guiyanakuang authored Jun 15, 2024
1 parent 38be979 commit de50d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
# directly use upload-artifact to compress zip and lose file permissions
# https://github.com/actions/upload-artifact?tab=readme-ov-file#permission-loss
- name: Tar Mac amd64 app
run: tar -cvf clipevery-mac-adm64-${{ env.PACKAGE_VERSION }}.tar -C output/clipevery-mac-adm64-${{ env.PACKAGE_VERSION }} Clipevery.app
run: tar -cvf output/clipevery-mac-adm64-${{ env.PACKAGE_VERSION }}/clipevery-mac-adm64-${{ env.PACKAGE_VERSION }}.tar -C output/clipevery-mac-adm64-${{ env.PACKAGE_VERSION }} Clipevery.app

- name: Upload Mac amd64 app
id: upload_mac_adm64_app
Expand All @@ -208,7 +208,7 @@ jobs:
agree_to_license: 1

- name: Tar Mac aarch64 app
run: tar -cvf clipevery-mac-aarch64-${{ env.PACKAGE_VERSION }}.tar -C output/clipevery-mac-aarch64-${{ env.PACKAGE_VERSION }} Clipevery.app
run: tar -cvf output/clipevery-mac-aarch64-${{ env.PACKAGE_VERSION }}/clipevery-mac-aarch64-${{ env.PACKAGE_VERSION }}.tar -C output/clipevery-mac-aarch64-${{ env.PACKAGE_VERSION }} Clipevery.app

- name: Upload Mac aaarch64 app
id: upload_mac_aarch64_app
Expand Down

0 comments on commit de50d92

Please sign in to comment.