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 a5aba08 commit 1e874dc
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 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.core_files_changed.outputs.result }}
should_skip_build: ${{ steps.core_files_changed.outputs.result != 'true' }}
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -111,21 +111,6 @@ jobs:
echo "result=false" >> $GITHUB_OUTPUT
fi
# - name: xxxxxxx
# # if: steps.core_files_changed.outputs.result != 'true'
# id: core_files_changed_output
# shell: bash
# run: |
# echo "${{ toJson(steps.core_files_changed.outputs) }}" | jq .

# # if [ "${{ steps.core_files_changed.outputs.result }}" == "true" ]; then
# # echo "YESSSSSSSSS"
# # echo "result=true" >> $GITHUB_OUTPUT
# # else
# # echo "NOOOOO"
# # echo "result=false" >> $GITHUB_OUTPUT
# # fi

build-ios:
needs: [check-secrets, check-vars, early-exit-check]
if: ${{ needs.early-exit-check.outputs.should_skip_build != 'true' }}
Expand Down

0 comments on commit 1e874dc

Please sign in to comment.