Skip to content

Commit

Permalink
CI: fixup detextion of changes
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCrews committed Nov 5, 2024
1 parent ac145b4 commit 47cd162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
run: python sql/generate_sql.py
- name: Check for changes
id: changes
run: git diff
run: echo "diff=$(git diff)" >> $GITHUB_OUTPUT
- name: Amend and push changes
if: steps.changes.outputs.stdout != ''
if: steps.changes.outputs.diff != ''
run: |
git config user.name "$(git log -n 1 --pretty=format:%an)"
git config user.email "$(git log -n 1 --pretty=format:%ae)"
Expand Down

0 comments on commit 47cd162

Please sign in to comment.