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 <[email protected]>
  • Loading branch information
jleach committed Oct 25, 2024
1 parent e45491d commit 145a5bb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,21 @@ jobs:
early-exit-check:
runs-on: ubuntu-22.04
outputs:
should_skip_build: ${{ steps.should_early_exit.outputs.result }}
should_skip_build: ${{ steps.should_early_exit.outputs.result == 'true' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all branches, main needed.

- name: Run early exit check
# - name: Run early exit check
# id: should_early_exit
# uses: ./.github/workflows/actions/early-exit-check

- name: Exit if no changes in core paths
id: should_early_exit
uses: ./.github/workflows/actions/early-exit-check
shell: bash
run: |
echo "result=true" >> $GITHUB_OUTPUT
build-ios:
needs: [check-secrets, check-vars, early-exit-check]
Expand Down

0 comments on commit 145a5bb

Please sign in to comment.