From 145a5bb2daffb6bd9ad76357b59dda5f9b41215e Mon Sep 17 00:00:00 2001 From: "Jason C. Leach" Date: Fri, 25 Oct 2024 10:21:03 -0700 Subject: [PATCH] fix: pipe logic Signed-off-by: Jason C. Leach --- .github/workflows/main.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3a77fc0d..8ca4e9bb 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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]