2019-06-10 20:30:50 +08:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
git config --global user.email "actions@github.com"
|
2019-06-10 21:32:33 +08:00
|
|
|
git config --global user.name "GitHub Actions"
|
2019-06-10 20:30:50 +08:00
|
|
|
|
|
|
|
git add -A
|
|
|
|
git status
|
2019-08-21 02:51:00 +08:00
|
|
|
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$INPUT_COMMIT_AUTHOR_NAME <$INPUT_COMMIT_AUTHOR_EMAIL>" || echo "No changes found. Nothing to commit."
|
2019-06-10 20:30:50 +08:00
|
|
|
git push -u origin HEAD
|