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 f491b05 commit 53f54d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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_build: ${{ steps.blarb.outputs.result == 'true' }}
should_skip_build: ${{ steps.should_early_exit.outputs.result != 'true' }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -81,11 +81,11 @@ jobs:
id: should_early_exit
uses: ./.github/workflows/actions/early-exit-check

- name: Exit if no changes in core paths
if: steps.should_early_exit.outputs.result != 'true'
continue-on-error: false
run: |
echo "result=true" >> $GITHUB_OUTPUT
# - name: Exit if no changes in core paths
# if: steps.should_early_exit.outputs.result != 'true'
# continue-on-error: false
# run: |
# echo "result=true" >> $GITHUB_OUTPUT

build-ios:
needs: [check-secrets, check-vars, early-exit-check]
Expand Down

0 comments on commit 53f54d4

Please sign in to comment.