Compare commits

..

7 Commits

Author SHA1 Message Date
peaceiris
7a3cc6d532 docs: update 2019-10-06 20:23:00 +09:00
peaceiris
727fb697cd docs: Add new section about Script mode, close #37 2019-10-06 20:19:04 +09:00
peaceiris
5897005fde docs: Update about GITHUB_TOKEN 2019-10-06 20:10:53 +09:00
peaceiris
77afd3c2c9 Merge branch 'master' into release/v2.5.0 2019-10-06 19:43:11 +09:00
peaceiris
039d96984d Merge branch 'master' into release/v2.5.0 2019-10-03 11:32:55 +09:00
peaceiris
896aa8fc53 gha: enhance trigger 2019-10-01 20:09:26 +09:00
peaceiris
aa82ef0992 refactor: Use HOME instead of /root 2019-10-01 20:06:09 +09:00
2 changed files with 7 additions and 17 deletions

View File

@@ -254,10 +254,10 @@ For example:
```yaml
- name: Deploy
uses: peaceiris/actions-gh-pages@v2.5.0-rc0
uses: peaceiris/actions-gh-pages@v2.4.0
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
EXTERNAL_REPOSITORY: username/external-repository
EXTERNAL_REPOSITORY: username/username.github.io
PUBLISH_BRANCH: master
PUBLISH_DIR: ./public
```
@@ -272,16 +272,12 @@ Be careful, `GITHUB_TOKEN` has no permission to access to external repositories.
From `v2.5.0`, we can run this action as a shell script.
There is no Docker build or pull step, so it will start immediately.
- `ACTIONS_DEPLOY_KEY` requires `SCRIPT_MODE: true`
- `*_TOKEN` do not require `SCRIPT_MODE`
```yaml
- name: Deploy
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./public
SCRIPT_MODE: true
run: |
wget https://raw.githubusercontent.com/peaceiris/actions-gh-pages/v2.5.0/entrypoint.sh
bash ./entrypoint.sh

View File

@@ -28,16 +28,10 @@ if [ -n "${ACTIONS_DEPLOY_KEY}" ]; then
print_info "setup with ACTIONS_DEPLOY_KEY"
if [ -n "${SCRIPT_MODE}" ]; then
print_info "run as SCRIPT_MODE"
SSH_DIR="${HOME}/.ssh"
else
SSH_DIR="/root/.ssh"
fi
mkdir "${SSH_DIR}"
ssh-keyscan -t rsa github.com > "${SSH_DIR}/known_hosts"
echo "${ACTIONS_DEPLOY_KEY}" > "${SSH_DIR}/id_rsa"
chmod 400 "${SSH_DIR}/id_rsa"
mkdir "${HOME}/.ssh"
ssh-keyscan -t rsa github.com > "${HOME}/.ssh/known_hosts"
echo "${ACTIONS_DEPLOY_KEY}" > "${HOME}/.ssh/id_rsa"
chmod 400 "${HOME}/.ssh/id_rsa"
remote_repo="git@github.com:${PUBLISH_REPOSITORY}.git"
@@ -76,7 +70,7 @@ fi
remote_branch="${PUBLISH_BRANCH}"
local_dir="${HOME}/ghpages_${RANDOM}"
local_dir="${HOME}/$(tr -cd 'a-f0-9' < /dev/urandom | head -c 32)"
if git clone --depth=1 --single-branch --branch "${remote_branch}" "${remote_repo}" "${local_dir}"; then
cd "${local_dir}"