Update pages.yml

This commit is contained in:
Waylon Walker 2020-03-09 21:54:41 -05:00 committed by GitHub
parent eae4d6c015
commit ba2eef71c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,18 +39,26 @@ jobs:
then then
echo '⚠️ There are no changes to commit, stopping.' echo '⚠️ There are no changes to commit, stopping.'
else else
echo
echo log before commit
git log -1 HEAD --pretty=format:%s
git config user.name ${COMMITER_NAME} git config user.name ${COMMITER_NAME}
git config user.email ${COMMITER_EMAIL} git config user.email ${COMMITER_EMAIL}
git status --porcelain git status --porcelain
git add --all . git add --all .
git commit -m "DIST to ${target_branch}" git commit -m "DIST to ${target_branch}"
echo
echo log after commit
git log -1 HEAD --pretty=format:%s
echo 🏃 Deploying ${build_dir} directory to ${target_branch} branch on ${repo} repo echo 🏃 Deploying ${build_dir} directory to ${target_branch} branch on ${repo} repo
if [ $keep_history == false] if [ $keep_history == false]
then then
echo pushing to remote
git push --quiet ${REMOTE} ${target_branch} git push --quiet ${REMOTE} ${target_branch}
else else
echo force pushing to remote
git push --quiet --force ${REMOTE} ${target_branch} git push --quiet --force ${REMOTE} ${target_branch}
fi fi
fi fi