1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00
QB64-PE/.ci/push-internal-source.sh
2022-04-28 17:21:58 -04:00

14 lines
382 B
Bash
Executable file

#!/bin/bash
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add ./internal/source/
if ! git diff --cached --quiet; then
echo "Pushing updated ./internal/source"
git commit -m 'Automatic update of ./internal/source'
git push
else
echo "No changes to ./internal/source"
fi