Skip to content

Commit

Permalink
Fix detecting changes in built docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Nov 7, 2023
1 parent 3078477 commit ff343a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
id: check-changes
if: github.repository == 'mlocati/unipoints' && github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
if git diff --exit-code --name-status; then
if ! git diff --exit-code --name-status; then
echo "commit=yes" >>"$GITHUB_OUTPUT"
fi
-
Expand Down

0 comments on commit ff343a6

Please sign in to comment.