Skip to content

Commit

Permalink
fix if cond
Browse files Browse the repository at this point in the history
  • Loading branch information
jr-b committed Jul 29, 2023
1 parent 9ac457f commit 816780c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
git config --local user.email "action@github.com"
git config --local user.name "github-actions"
git add --all
if [[ -z "$(git status --porcelain)"]]; then
if [ -z "$(git status --porcelain)" ]; then
echo "::set-output name=push::false"
else
git commit -m "Updated PDF" -a
Expand Down

0 comments on commit 816780c

Please sign in to comment.