ci: continue on error if notarization fails

This commit is contained in:
Matan Kushner 2022-05-24 23:37:53 +01:00
parent b9a6b66d6e
commit f7dcb3afa8
No known key found for this signature in database
GPG Key ID: BFF10DF8EAA776DD
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
name: Deploy name: Release
on: on:
push: push:
branches: branches:
@ -117,7 +117,7 @@ jobs:
tar czvf ../../../${{ matrix.name }} starship tar czvf ../../../${{ matrix.name }} starship
cd - cd -
- name: Deploy | Upload artifacts - name: Release | Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: ${{ matrix.name }} name: ${{ matrix.name }}
@ -126,6 +126,7 @@ jobs:
# Notarize starship binaries for MacOS and build notarized pkg installers # Notarize starship binaries for MacOS and build notarized pkg installers
notarize_and_pkgbuild: notarize_and_pkgbuild:
runs-on: macos-latest runs-on: macos-latest
continue-on-error: true
needs: [github_build, merge_crowdin_pr] needs: [github_build, merge_crowdin_pr]
strategy: strategy:
fail-fast: false fail-fast: false