From 8cd9aaa01d6bec896cde0eff7566f2cbd30102c2 Mon Sep 17 00:00:00 2001 From: Julien Dubois Date: Thu, 24 Aug 2023 13:25:32 +0200 Subject: [PATCH] Fix wrong git command --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index c5117ca..53c8e5e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -27,7 +27,7 @@ if [ -z "$(git status --porcelain)" ]; then git config user.name github-actions || exit git config user.email github-actions@github.com || exit git add --all || exit - git commit -am "Updated app on $now" –allow-empty || exit + git commit -am "Updated app on $now" --allow-empty || exit git push origin $DEPLOY_BRANCH --force || exit echo ">> $now: Published changes to GitHub"