fix(ci): Mobile build should not run on fork PRs (#1844)
* fix(ci): Mobile build should not run on PRs It doesn't have the necessary secrets exposed for it succeed in PR context. * ci(mobile): Run only on internal PRspull/1846/head
parent
3beb8193ae
commit
de5a6b2c35
|
|
@ -18,6 +18,8 @@ concurrency:
|
|||
jobs:
|
||||
build-sign-android:
|
||||
name: Build and sign Android
|
||||
# Skip when PR from a fork
|
||||
if: ${{ !github.event.pull_request.head.repo.fork }}
|
||||
runs-on: macos-12
|
||||
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Reference in New Issue