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 attempt #2
  • Loading branch information
kkerti committed Jan 12, 2025
commit 1b8a8db629d3e7417434de674a6eba283b7c2481
9 changes: 7 additions & 2 deletions .github/workflows/build-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
if: ${{ inputs.versionOverride != '' }}
run: npm version ${{ inputs.versionOverride }} --no-git-tag-version

- name: Build
run: npm run ${{ inputs.exportScript }}
- name: Build with auto retry on fail (macos sporadically fails)
uses: nick-fields/retry@v3.0.0
env:
# gh repo token
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -62,6 +62,11 @@ jobs:

# Branch name
VITE_BRANCH_NAME: ${{ github.ref_name }}
with:
retry_on: error
timeout_minutes: 15
max_attempts: 3
command: npm run ${{ inputs.exportScript }}

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