Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bundle-desktop-intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:

# download the signed app from S3
echo "⬇️ downloading signed app"
aws s3 cp --quiet "${signed_url}" out/Goose-darwin-x64/Goose_intel_mac.zip
aws s3 cp --quiet "${signed_url}" out/Goose-darwin-x64/Goose_intel_mac.tar.gz
working-directory: ui/desktop

- name: Final cleanup before artifact upload
Expand All @@ -268,7 +268,7 @@ jobs:
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # pin@v4
with:
name: Goose-darwin-x64
path: ui/desktop/out/Goose-darwin-x64/Goose_intel_mac.zip
path: ui/desktop/out/Goose-darwin-x64/Goose_intel_mac.tar.gz

- name: Quick launch test (macOS)
if: ${{ inputs.quick_test }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundle-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ jobs:

# download the signed app from S3
echo "⬇️ downloading signed app"
aws s3 cp --quiet "${signed_url}" out/Goose-darwin-arm64/Goose.zip
aws s3 cp --quiet "${signed_url}" out/Goose-darwin-arm64/Goose.tar.gz
working-directory: ui/desktop

- name: Final cleanup before artifact upload
Expand All @@ -303,7 +303,7 @@ jobs:
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # pin@v4
with:
name: Goose-darwin-arm64
path: ui/desktop/out/Goose-darwin-arm64/Goose.zip
path: ui/desktop/out/Goose-darwin-arm64/Goose.tar.gz

- name: Quick launch test (macOS)
if: ${{ inputs.quick_test }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ jobs:
goose-*.tar.bz2
goose-*.zip
Goose*.zip
Goose*.tar.gz
*.deb
*.rpm
download_cli.sh
Expand All @@ -125,6 +126,7 @@ jobs:
goose-*.tar.bz2
goose-*.zip
Goose*.zip
Goose*.tar.gz
*.deb
*.rpm
download_cli.sh
Expand Down
Loading