ci: continue on error if notarization fails
This commit is contained in:
parent
b9a6b66d6e
commit
f7dcb3afa8
|
@ -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
|
Loading…
Reference in New Issue