Skip to content

Commit

Permalink
Merge pull request #154 from jdubois/src
Browse files Browse the repository at this point in the history
Allow empty commits when deploying
  • Loading branch information
jdubois committed Aug 24, 2023
2 parents 6abd848 + ef08b8c commit 39db351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if [ -z "$(git status --porcelain)" ]; then
git config user.name github-actions || exit
git config user.email [email protected] || exit
git add --all || exit
git commit -am "Updated app on $now" || exit
git commit -am "Updated app on $now" –allow-empty || exit
git push origin $DEPLOY_BRANCH --force || exit

echo ">> $now: Published changes to GitHub"
Expand Down

0 comments on commit 39db351

Please sign in to comment.