summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Eizinger2022-01-27 20:23:36 +1100
committerThomas Eizinger2022-01-27 20:23:36 +1100
commit14f76210532bd0aa58570ed00ce201e8a4b5f69c (patch)
tree6b51732972074fe0712230a2903805506aa64a08
parent894a6e9ca14e2598009529a01c633e15297dd78f (diff)
downloadaur-14f76210532bd0aa58570ed00ce201e8a4b5f69c.tar.gz
Always force-push in case we run the action again
-rwxr-xr-xcheck_for_update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/check_for_update.sh b/check_for_update.sh
index 2c66ae0ffdf9..afe8027e2c20 100755
--- a/check_for_update.sh
+++ b/check_for_update.sh
@@ -32,6 +32,6 @@ git config --local user.email "thomas@eizinger.io"
git checkout -b "bump-photoprism-$LATEST_RELEASE"
git commit -a -m "Upgrade photoprism to $LATEST_RELEASE"
-git push origin "bump-photoprism-$LATEST_RELEASE"
+git push -f origin "bump-photoprism-$LATEST_RELEASE"
gh pr create --title "Upgrade photoprism to $LATEST_RELEASE"