ci: use npm run bundle:intel in intel workflow (#1488)

This commit is contained in:
Kalvin C
2025-03-03 17:38:42 -08:00
committed by GitHub
parent 4ea5933e97
commit d045c9900f
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -190,7 +190,7 @@ jobs:
attempt=0 attempt=0
max_attempts=2 max_attempts=2
until [ $attempt -ge $max_attempts ]; do until [ $attempt -ge $max_attempts ]; do
npm run bundle:default && break npm run bundle:intel && break
attempt=$((attempt + 1)) attempt=$((attempt + 1))
echo "Attempt $attempt failed. Retrying..." echo "Attempt $attempt failed. Retrying..."
sleep 5 sleep 5
@@ -207,7 +207,7 @@ jobs:
attempt=0 attempt=0
max_attempts=2 max_attempts=2
until [ $attempt -ge $max_attempts ]; do until [ $attempt -ge $max_attempts ]; do
npm run bundle:default && break npm run bundle:intel && break
attempt=$((attempt + 1)) attempt=$((attempt + 1))
echo "Attempt $attempt failed. Retrying..." echo "Attempt $attempt failed. Retrying..."
sleep 5 sleep 5
@@ -234,7 +234,7 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: Goose-darwin-x64 name: Goose-darwin-x64
path: ui/desktop/out/Goose-darwin-x64/Goose.zip path: ui/desktop/out/Goose-darwin-x64/Goose_intel_mac.zip
- name: Quick launch test (macOS) - name: Quick launch test (macOS)
if: ${{ inputs.quick_test }} if: ${{ inputs.quick_test }}