Fixing redirect

This commit is contained in:
Brandon Rozek 2022-12-12 11:37:02 -05:00
parent 911cb37a81
commit 551a1a5436

View file

@ -25,7 +25,7 @@ jobs:
- name: Check if there's any changes
id: verify_diff
run: |
if [ -n "$(git status --porcelain)" ]; then echo "changed=true" || tee -a $GITHUB_OUTPUT; fi
if [ -n "$(git status --porcelain)" ]; then echo ::set-output name=changed::true; fi
- name: Commit and push
if: steps.verify_diff.outputs.changed == 'true'