From 1c1647716ac449debd0eafdf2bda9b5da830cdca Mon Sep 17 00:00:00 2001 From: "Jason C. Leach" Date: Fri, 25 Oct 2024 11:25:52 -0700 Subject: [PATCH] fix: pipe logic Signed-off-by: Jason C. Leach --- .github/workflows/main.yaml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 1cc8199a0..c87c0440e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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 @@ -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: