Disable commit verification on deployment

This commit is contained in:
Talia 2024-04-05 17:57:36 +02:00
parent 55a497fe02
commit f3e175f2f5
Signed by: darkwiiplayer
GPG key ID: 7808674088232B3E

View file

@ -40,8 +40,8 @@ task.deploy {
find . | treh -c find . | treh -c
git add --all git add --all
if git log -1 --format=%s | grep "$hash$" if git log -1 --format=%s | grep "$hash$"
then git commit --amend --no-edit then git commit --no-verify --amend --no-edit
else git commit -m "Update blog to $hash" else git commit --no-verify -m "Update blog to $hash"
fi fi
git push --force origin page git push --force origin page
cd ../ cd ../