github-pages-deploy-action/entrypoint.sh

36 lines
921 B
Bash
Raw Normal View History

2019-03-03 07:43:28 +08:00
#!/bin/sh -l
if [ -z "$BRANCH" ]
then
2019-03-03 23:05:36 +08:00
echo "You must provide the action with a branch name."
2019-03-03 07:43:28 +08:00
exit 1
fi
if [ -z "$FOLDER" ]
then
2019-03-03 23:05:36 +08:00
echo "You must provide the action with the folder name in the repository where your compiled page lives."
2019-03-03 07:43:28 +08:00
fi
# Installs Git.
apt-get update && \
apt-get install -y git && \
# Re-directs to the the Github workspace.
cd $GITHUB_WORKSPACE && \
# Configures Git and checks out the base branch.
git config --global user.email "${COMMIT_EMAIL:-gh-pages-deploy@jives.dev}" && \
git config --global user.name "${COMMIT_NAME:-Github Pages Deploy}" && \
git checkout master && \
2019-03-03 23:05:36 +08:00
git push $GITHUB_REPOSITORY $BRANCH:$BRANCH && \
2019-03-03 07:43:28 +08:00
2019-03-03 23:07:27 +08:00
# Builds the project if applicable.
if [ -z "$BUILD_SCRIPT" ]
then
$BUILD_SCRIPT && \
2019-03-03 07:43:28 +08:00
# Commits the data to Github.
git add -f $FOLDER &&
git commit -m "Deploying $(date +"%T")" && \
git push origin `git subtree split --prefix $FOLDER master`:$BRANCH --force