Skip to content

Commit

Permalink
feat: check cicd vars (bcgov#1631)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Leach <[email protected]>
  • Loading branch information
jleach authored Nov 28, 2023
1 parent 0e1ecc4 commit b7f2d4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

ship-to-saucelabs:
if: github.ref_name == 'main' && needs.check-android-secrets.outputs.isReleaseBuild == 'true' && needs.check-ios-secrets.outputs.isReleaseBuild == 'true'
if: github.ref_name == 'main'
needs: [build-ios, build-android]
runs-on: ubuntu-22.04
steps:
Expand All @@ -428,7 +428,7 @@ jobs:
artifact_name: app-release.aab

run-on-device-tests:
if: github.ref_name == 'main' && needs.check-android-secrets.outputs.isReleaseBuild == 'true' && needs.check-ios-secrets.outputs.isReleaseBuild == 'true'
if: github.ref_name == 'main'
needs: [ship-to-saucelabs]
runs-on: ubuntu-22.04
strategy:
Expand Down

0 comments on commit b7f2d4d

Please sign in to comment.