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 36f317b commit c689f7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ jobs:

early-exit-check:
runs-on: ubuntu-22.04
outputs:
should_skip_xx: ${{ steps.blarb.outputs.result == 'true' }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -83,10 +85,11 @@ jobs:
if: steps.should_early_exit.outputs.result != 'true'
continue-on-error: false
run: |
exit 1
echo "result=true" >> $GITHUB_OUTPUT
build-ios:
needs: [check-secrets, check-vars, early-exit-check]
if: ${{ needs.early-exit-check.outputs.should_skip_xx != 'true' }}
runs-on: macos-13
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit c689f7b

Please sign in to comment.