Compare commits

...

3 Commits

Author SHA1 Message Date
peaceiris
51a5b047a7 docs: fix 2019-09-25 02:47:12 +09:00
peaceiris
649380ea44 docs: update TOC 2019-09-25 02:46:13 +09:00
peaceiris
493f73c406 fix: avoid #29 2019-09-25 02:43:21 +09:00
2 changed files with 7 additions and 4 deletions

View File

@ -28,6 +28,7 @@ Table of Contents
- [⭐️ `PERSONAL_TOKEN`](#%EF%B8%8F-personal_token) - [⭐️ `PERSONAL_TOKEN`](#%EF%B8%8F-personal_token)
- [⭐️ `GITHUB_TOKEN`](#%EF%B8%8F-github_token) - [⭐️ `GITHUB_TOKEN`](#%EF%B8%8F-github_token)
- [⭐️ Suppressing empty commits](#%EF%B8%8F-suppressing-empty-commits) - [⭐️ Suppressing empty commits](#%EF%B8%8F-suppressing-empty-commits)
- [⭐️ Keeping existing files](#%EF%B8%8F-keeping-existing-files)
- [Tips and FAQ](#tips-and-faq) - [Tips and FAQ](#tips-and-faq)
- [How to add `CNAME`](#how-to-add-cname) - [How to add `CNAME`](#how-to-add-cname)
- [Deployment completed but you cannot read](#deployment-completed-but-you-cannot-read) - [Deployment completed but you cannot read](#deployment-completed-but-you-cannot-read)
@ -189,7 +190,7 @@ By default, a commit will always be generated and pushed to the `PUBLISH_BRANCH`
For example: For example:
```yaml ```yaml
- name: deploy - name: Deploy
uses: peaceiris/actions-gh-pages@v2.3.2 uses: peaceiris/actions-gh-pages@v2.3.2
env: env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
@ -206,7 +207,7 @@ By default, existing files in the publish branch are removed before adding the o
For example: For example:
```yaml ```yaml
- name: deploy - name: Deploy
uses: peaceiris/actions-gh-pages@v2.3.2 uses: peaceiris/actions-gh-pages@v2.3.2
env: env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
@ -217,6 +218,7 @@ For example:
``` ```
## Tips and FAQ ## Tips and FAQ
### How to add `CNAME` ### How to add `CNAME`

View File

@ -62,8 +62,9 @@ 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 if git clone --depth=1 --single-branch --branch "${remote_branch}" "${remote_repo}" "${local_dir}"; then
cd "${local_dir}" cd "${local_dir}"
print_info "Keeping existing files: ${INPUT_KEEPFILES}" if [[ ${INPUT_KEEPFILES} == "true" ]]; then
if [[ ${INPUT_KEEPFILES} != "true" ]]; then print_info "Keeping existing files: ${INPUT_KEEPFILES}"
else
git rm -r --ignore-unmatch '*' git rm -r --ignore-unmatch '*'
fi fi