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 8d4ccb7 commit 1c16477
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ jobs:
early-exit-check:
runs-on: ubuntu-22.04
outputs:
should_skip_build: ${{ steps.core_files_changed.outputs.result != 'true' }}
should_skip_build: ${{ steps.core_files_check.outputs.result != 'true' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all branches, main needed.

- name: Check if core files changed
id: core_files_changed
id: core_files_check
shell: bash
run: |
set -x
Expand Down Expand Up @@ -117,17 +117,6 @@ jobs:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all branches, main needed.

# - name: Run early exit check
# 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'
# run: |
# exit 0

- uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit 1c16477

Please sign in to comment.