Compare commits
19 Commits
v2.3.0
...
v2.3.2-rc1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6b5fd85f5d | ||
|
|
bc2d1b14df | ||
|
|
deecf75ce0 | ||
|
|
5a72c9206d | ||
|
|
b8dd2848eb | ||
|
|
45fd035794 | ||
|
|
4530dcd167 | ||
|
|
74f032c7e9 | ||
|
|
83bd255342 | ||
|
|
efee27b98b | ||
|
|
0713c6cb9c | ||
|
|
c647ffeac6 | ||
|
|
b16172a44d | ||
|
|
4f0ad674b7 | ||
|
|
16fae5a6db | ||
|
|
e46ccd0122 | ||
|
|
087a904156 | ||
|
|
47a6d63ea8 | ||
|
|
201f9af234 |
14
.github/workflows/docker-image-ci.yml
vendored
@@ -1,6 +1,12 @@
|
||||
name: docker image ci
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**'
|
||||
- '!LICENSE'
|
||||
- '!README.md'
|
||||
- '!images'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
@@ -8,6 +14,8 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: build
|
||||
env:
|
||||
@@ -20,6 +28,8 @@ jobs:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: shellcheck
|
||||
run: shellcheck ./entrypoint.sh
|
||||
|
||||
@@ -27,6 +37,8 @@ jobs:
|
||||
runs-on: macOS-10.14
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: hadolint
|
||||
run: |
|
||||
brew install hadolint
|
||||
|
||||
113
README.md
@@ -21,13 +21,16 @@ Table of Contents
|
||||
- [Getting started](#getting-started)
|
||||
- [(1) Add ssh deploy key](#1-add-ssh-deploy-key)
|
||||
- [(2) Create `.github/workflows/gh-pages.yml`](#2-create-githubworkflowsgh-pagesyml)
|
||||
- [:star: Repository type - Project](#star-repository-type---project)
|
||||
- [:star: Repository type - User and Organization](#star-repository-type---user-and-organization)
|
||||
- [⭐️ Repository type - Project](#%EF%B8%8F-repository-type---project)
|
||||
- [⭐️ Repository type - User and Organization](#%EF%B8%8F-repository-type---user-and-organization)
|
||||
- [Options](#options)
|
||||
- [:star: Pull action image from Docker Hub](#star-pull-action-image-from-docker-hub)
|
||||
- [:star: `PERSONAL_TOKEN`](#star-personal_token)
|
||||
- [:star: `GITHUB_TOKEN`](#star-github_token)
|
||||
- [:star: Suppressing empty commits](#star-suppressing-empty-commits)
|
||||
- [⭐️ Pull action image from Docker Hub](#%EF%B8%8F-pull-action-image-from-docker-hub)
|
||||
- [⭐️ `PERSONAL_TOKEN`](#%EF%B8%8F-personal_token)
|
||||
- [⭐️ `GITHUB_TOKEN`](#%EF%B8%8F-github_token)
|
||||
- [⭐️ Suppressing empty commits](#%EF%B8%8F-suppressing-empty-commits)
|
||||
- [Tips and FAQ](#tips-and-faq)
|
||||
- [How to add `CNAME`](#how-to-add-cname)
|
||||
- [Deployment completed but you cannot read](#deployment-completed-but-you-cannot-read)
|
||||
- [Examples](#examples)
|
||||
- [Static Site Generators with Node.js](#static-site-generators-with-nodejs)
|
||||
- [Gatsby](#gatsby)
|
||||
@@ -59,13 +62,21 @@ Next, Go to **Repository Settings**
|
||||
- Go to **Deploy Keys** and add your public key with the **Allow write access**
|
||||
- Go to **Secrets** and add your private key as `ACTIONS_DEPLOY_KEY`
|
||||
|
||||
| Add your public key | Success |
|
||||
|---|---|
|
||||
|  |  |
|
||||
|
||||
| Add your private key | Success |
|
||||
|---|---|
|
||||
|  |  |
|
||||
|
||||
### (2) Create `.github/workflows/gh-pages.yml`
|
||||
|
||||
#### :star: Repository type - Project
|
||||
#### ⭐️ Repository type - Project
|
||||
|
||||
An example yaml file with Hugo action.
|
||||
An example workflow for Hugo.
|
||||
|
||||
- [peaceiris/actions-hugo: GitHub Actions for Hugo extended](https://github.com/peaceiris/actions-hugo)
|
||||
- [peaceiris/actions-hugo: GitHub Actions for Hugo](https://github.com/peaceiris/actions-hugo)
|
||||
|
||||
[](https://github.com/peaceiris/actions-hugo)
|
||||
|
||||
@@ -86,13 +97,16 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: build
|
||||
uses: peaceiris/actions-hugo@v0.58.1
|
||||
- name: Setup Hugo
|
||||
uses: peaceiris/actions-hugo@v2.2.0
|
||||
with:
|
||||
args: --gc --minify --cleanDestinationDir
|
||||
hugo-version: '0.58.2'
|
||||
|
||||
- name: deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
- name: Build
|
||||
run: hugo --gc --minify --cleanDestinationDir
|
||||
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
@@ -101,7 +115,15 @@ jobs:
|
||||
|
||||
The above example is for [Project Pages sites]. (`<username>/<project_name>` repository)
|
||||
|
||||
#### :star: Repository type - User and Organization
|
||||
| Actions log overview | Build step log |
|
||||
|---|---|
|
||||
|  |  |
|
||||
|
||||
| Deploy step log | GitHub Pages log |
|
||||
|---|---|
|
||||
|  |  |
|
||||
|
||||
#### ⭐️ Repository type - User and Organization
|
||||
|
||||
For [User and Organization Pages sites] (`<username>/<username>.github.io` repository),
|
||||
we have to set `master` branch to `PUBLISH_BRANCH`.
|
||||
@@ -118,28 +140,23 @@ PUBLISH_BRANCH: master # deploying branch
|
||||
[Project Pages sites]: https://help.github.com/en/articles/user-organization-and-project-pages#project-pages-sites
|
||||
[User and Organization Pages sites]: https://help.github.com/en/articles/user-organization-and-project-pages#user-and-organization-pages-sites
|
||||
|
||||

|
||||
|
||||
### Options
|
||||
|
||||
#### :star: Pull action image from Docker Hub
|
||||
#### ⭐️ Pull action image from Docker Hub
|
||||
|
||||
You can pull a public docker image from Docker Hub.
|
||||
By pulling docker images, you can reduce the overall execution time of your workflow. In addition, `latest` tag is provided.
|
||||
|
||||
```diff
|
||||
- uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
+ uses: docker://peaceiris/gh-pages:v2.3.0
|
||||
- uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
+ uses: docker://peaceiris/gh-pages:v2.3.1
|
||||
```
|
||||
|
||||
- [peaceiris/gh-pages - Docker Hub](https://hub.docker.com/r/peaceiris/gh-pages)
|
||||
|
||||
```diff
|
||||
- uses: peaceiris/actions-hugo@v0.58.1
|
||||
+ uses: docker://peaceiris/gha-hugo:v0.58.1
|
||||
```
|
||||
|
||||
- [peaceiris/gha-hugo - Docker Hub](https://hub.docker.com/r/peaceiris/gha-hugo)
|
||||
|
||||
#### :star: `PERSONAL_TOKEN`
|
||||
#### ⭐️ `PERSONAL_TOKEN`
|
||||
|
||||
[Generate a personal access token (`repo`)](https://github.com/settings/tokens) and add it to Secrets as `PERSONAL_TOKEN`, it works as well as `ACTIONS_DEPLOY_KEY`.
|
||||
|
||||
@@ -148,16 +165,20 @@ By pulling docker images, you can reduce the overall execution time of your work
|
||||
+ PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
|
||||
```
|
||||
|
||||
#### :star: `GITHUB_TOKEN`
|
||||
#### ⭐️ `GITHUB_TOKEN`
|
||||
|
||||
> **NOTES**: This action supports `GITHUB_TOKEN` but it has some problems to deploy to GitHub Pages. See #9
|
||||
> **NOTES**: Do not use `GITHUB_TOKEN`.
|
||||
>
|
||||
> This action supports `GITHUB_TOKEN` but it has some problems to deploy to GitHub Pages. GitHub team is investigating that. See [Issue #9]
|
||||
|
||||
[Issue #9]: https://github.com/peaceiris/actions-gh-pages/issues/9
|
||||
|
||||
```diff
|
||||
- ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
```
|
||||
|
||||
#### :star: Suppressing empty commits
|
||||
#### ⭐️ Suppressing empty commits
|
||||
|
||||
By default, a commit will always be generated and pushed to the `PUBLISH_BRANCH`, even if nothing changed. If you want to suppress this behavior, set the optional parameter `emptyCommits` to `false`. cf. [Issue #21]
|
||||
|
||||
@@ -167,7 +188,7 @@ For example:
|
||||
|
||||
```yaml
|
||||
- name: deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
@@ -177,6 +198,28 @@ For example:
|
||||
```
|
||||
|
||||
|
||||
## Tips and FAQ
|
||||
|
||||
### How to add `CNAME`
|
||||
|
||||
Most of the Static Site Generators support `CNAME` as a static file.
|
||||
|
||||
- [Use a Custom Domain | Hugo](https://gohugo.io/hosting-and-deployment/hosting-on-github/#use-a-custom-domain)
|
||||
- [Using the Static folder | GatsbyJS](https://www.gatsbyjs.org/docs/static-folder/)
|
||||
|
||||
The same may be said of other files (`.nojekyll`, `BingSiteAuth.xml`, `robots.txt`, etc.). It is better to manage those files by Static Site Generators.
|
||||
|
||||
### Deployment completed but you cannot read
|
||||
|
||||
Does your `PUBLISH_DIR` contain files or directories that name starts with an underscore? (`_modules`, `_sources` and `_next`, etc.)
|
||||
GitHub Pages does not read those by default.
|
||||
Please add `.nojekyll` file to `PUBLISH_DIR`.
|
||||
|
||||
- [Bypassing Jekyll on GitHub Pages - The GitHub Blog](https://github.blog/2009-12-29-bypassing-jekyll-on-github-pages/)
|
||||
|
||||
> It is now possible to completely bypass Jekyll processing on GitHub Pages by creating a file named `.nojekyll` in the root of your pages repo and pushing it to GitHub. This should only be necessary if your site uses files or directories that start with underscores since Jekyll considers these to be special resources and does not copy them to the final site.
|
||||
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -217,7 +260,7 @@ jobs:
|
||||
npm run build
|
||||
|
||||
- name: deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
@@ -265,7 +308,7 @@ jobs:
|
||||
run: npm run build
|
||||
|
||||
- name: deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
@@ -315,7 +358,7 @@ jobs:
|
||||
run: touch ./out/.nojekyll
|
||||
|
||||
- name: deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
@@ -362,7 +405,7 @@ jobs:
|
||||
run: npm run generate
|
||||
|
||||
- name: deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
@@ -410,7 +453,7 @@ jobs:
|
||||
run: mkdocs build
|
||||
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.3.0
|
||||
uses: peaceiris/actions-gh-pages@v2.3.1
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
|
||||
@@ -32,6 +32,7 @@ elif [ -n "${PERSONAL_TOKEN}" ]; then
|
||||
elif [ -n "${GITHUB_TOKEN}" ]; then
|
||||
|
||||
print_info "setup with GITHUB_TOKEN"
|
||||
print_error "Do not use GITHUB_TOKEN, See #9"
|
||||
|
||||
remote_repo="https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
|
||||
|
||||
@@ -55,7 +56,7 @@ remote_branch="${PUBLISH_BRANCH}"
|
||||
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}"
|
||||
git rm -r '*'
|
||||
git rm -r --ignore-unmatch '*'
|
||||
find "${GITHUB_WORKSPACE}/${PUBLISH_DIR}" -maxdepth 1 | \
|
||||
tail -n +2 | \
|
||||
xargs -I % cp -rf % "${local_dir}/"
|
||||
@@ -74,12 +75,12 @@ git add --all
|
||||
|
||||
print_info "Allowing empty commits: ${INPUT_EMPTYCOMMITS}"
|
||||
COMMIT_MESSAGE="Automated deployment: $(date -u) ${GITHUB_SHA}"
|
||||
if [[ ${INPUT_EMPTYCOMMITS} == "true" ]]; then
|
||||
git commit --allow-empty -m "${COMMIT_MESSAGE}"
|
||||
else
|
||||
if [[ ${INPUT_EMPTYCOMMITS} == "false" ]]; then
|
||||
git commit -m "${COMMIT_MESSAGE}" || \
|
||||
print_info "No changes detected, skipping deployment" && \
|
||||
exit 0
|
||||
(print_info "No changes detected, skipping deployment" && \
|
||||
exit 0)
|
||||
else
|
||||
git commit --allow-empty -m "${COMMIT_MESSAGE}"
|
||||
fi
|
||||
|
||||
git push origin "${remote_branch}"
|
||||
|
||||
BIN
images/default-branch.jpg
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
images/deploy-keys-1.jpg
Normal file
|
After Width: | Height: | Size: 173 KiB |
BIN
images/deploy-keys-2.jpg
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
images/log1.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
images/log2.jpg
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
images/log3.jpg
Normal file
|
After Width: | Height: | Size: 151 KiB |
BIN
images/log4.jpg
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
images/secrets-1.jpg
Normal file
|
After Width: | Height: | Size: 154 KiB |
BIN
images/secrets-2.jpg
Normal file
|
After Width: | Height: | Size: 53 KiB |