1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 11:30:37 +00:00
QB64-PE/.ci/push-internal-source.sh

14 lines
382 B
Bash
Raw Normal View History

2022-04-27 22:55:16 +00:00
#!/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