Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: Apple notarization flow #902

Merged
merged 16 commits into from
Jan 17, 2025
Prev Previous commit
Next Next commit
kk add retry script
  • Loading branch information
kkerti committed Jan 12, 2025
commit f58dc486b7b52b32ef926a0da4c3247c47e3f220
9 changes: 8 additions & 1 deletion .github/workflows/build-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -63,6 +63,13 @@ jobs:
# Branch name
VITE_BRANCH_NAME: ${{ github.ref_name }}

- name: Retry build on fail (macos sporadically fails)
uses: nick-fields/retry@v3.0.0
with:
timeout_minutes: 10
max_attempts: 3
command: npm run ${{ inputs.exportScript }}

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