Skip to content

Commit

Permalink
fix: pipe logic
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Leach <jason.leach@fullboar.ca>
  • Loading branch information
jleach committed Oct 25, 2024
1 parent d5bbdd1 commit f491b05
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
early-exit-check:
runs-on: ubuntu-22.04
outputs:
should_skip_xx: ${{ steps.blarb.outputs.result == 'true' }}
should_skip_build: ${{ steps.blarb.outputs.result == 'true' }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -89,7 +89,7 @@ jobs:
build-ios:
needs: [check-secrets, check-vars, early-exit-check]
if: ${{ needs.early-exit-check.outputs.should_skip_xx == 'true' }}
if: ${{ needs.early-exit-check.outputs.should_skip_build == 'true' }}
runs-on: macos-13
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -258,6 +258,7 @@ jobs:

build-android:
needs: [check-secrets, check-vars, early-exit-check]
if: ${{ needs.early-exit-check.outputs.should_skip_build == 'true' }}
runs-on: ubuntu-22.04
permissions:
contents: read
Expand Down

0 comments on commit f491b05

Please sign in to comment.