ci: fix skip condition
This commit is contained in:
parent
0770bb9fb8
commit
5a45700204
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
|
||||
build:
|
||||
name: Build iOS IPA for device
|
||||
if: ${{ contains(github.head_ref || github.ref, 'refs/heads/') }}
|
||||
if: github.secret_source != 'None'
|
||||
needs: check-runner
|
||||
runs-on: ${{ needs.check-runner.outputs.runner-label }}
|
||||
|
||||
|
|
@ -83,7 +83,7 @@ jobs:
|
|||
|
||||
build-simulator:
|
||||
name: Build iOS IPA for simulator
|
||||
if: ${{ contains(github.head_ref || github.ref, 'refs/heads/') }}
|
||||
if: github.secret_source != 'None'
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
|
||||
build:
|
||||
name: Build iOS IPA
|
||||
if: ${{ contains(github.head_ref || github.ref, 'refs/heads/') }}
|
||||
if: github.secret_source != 'None'
|
||||
needs: check-runner
|
||||
runs-on: ${{ needs.check-runner.outputs.runner-label }}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue