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 fe20bae commit 96467a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,15 @@ jobs:
uses: ./.github/workflows/actions/early-exit-check

- name: Check if core files changed
if: steps.core_files_changed.outputs.result != 'true'
# if: steps.core_files_changed.outputs.result != 'true'
id: core_files_changed_output
shell: bash
run: |
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
Expand Down

0 comments on commit 96467a4

Please sign in to comment.