Remove commit signing

This commit is contained in:
Brett Logan 2022-02-22 10:26:50 -05:00
parent f71367133f
commit 6c1bd98be5
No known key found for this signature in database
GPG key ID: 52ED7D1F56850EE6
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ if [[ $(git status --porcelain) ]]; then
# Push changes to remote
echo "Pushing changes to remote..."
git add .
git commit -a -Ss -m "Update NPM dependencies"
git commit -a -m "Update NPM dependencies"
# shellcheck disable=SC2154
git checkout -b "npm_deps_${id}"
# shellcheck disable=SC2154

View file

@ -63,7 +63,7 @@ if [[ $(git status --porcelain) ]]; then
# Push changes to remote
echo "Pushing changes to remote..."
git add .
git commit -a -Ss -m "Update Python dependencies"
git commit -a -m "Update Python dependencies"
# shellcheck disable=SC2154
git checkout -b "python_deps_${id}"
# shellcheck disable=SC2154