Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
809601eb1f | ||
|
|
45f5817ce0 | ||
|
|
713b37219b |
@@ -1,5 +1,7 @@
|
|||||||
.git
|
.git
|
||||||
.github
|
.github
|
||||||
|
.hadolint.yaml
|
||||||
LICENSE
|
LICENSE
|
||||||
README.md
|
README.md
|
||||||
|
action.yml
|
||||||
images
|
images
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
ignored:
|
ignored:
|
||||||
- DL3008
|
- DL3018
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
FROM ubuntu:18.04
|
FROM alpine:3.10.2
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apk add --no-cache \
|
||||||
|
bash \
|
||||||
git \
|
git \
|
||||||
openssh-client \
|
openssh-client \
|
||||||
ca-certificates && \
|
ca-certificates && \
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ jobs:
|
|||||||
args: --gc --minify --cleanDestinationDir
|
args: --gc --minify --cleanDestinationDir
|
||||||
|
|
||||||
- name: deploy
|
- name: deploy
|
||||||
uses: peaceiris/actions-gh-pages@v2.0.0
|
uses: peaceiris/actions-gh-pages@v2.1.0
|
||||||
env:
|
env:
|
||||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||||
PUBLISH_BRANCH: gh-pages
|
PUBLISH_BRANCH: gh-pages
|
||||||
@@ -78,8 +78,8 @@ 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.
|
By pulling docker images, you can reduce the overall execution time of your workflow. In addition, `latest` tag is provided.
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
- uses: peaceiris/actions-gh-pages@v2.0.0
|
- uses: peaceiris/actions-gh-pages@v2.1.0
|
||||||
+ uses: docker://peaceiris/gh-pages:v2.0.0
|
+ uses: docker://peaceiris/gh-pages:v2.1.0
|
||||||
```
|
```
|
||||||
|
|
||||||
- [peaceiris/gh-pages - Docker Hub](https://hub.docker.com/r/peaceiris/gh-pages)
|
- [peaceiris/gh-pages - Docker Hub](https://hub.docker.com/r/peaceiris/gh-pages)
|
||||||
@@ -137,7 +137,7 @@ jobs:
|
|||||||
run: mkdocs build
|
run: mkdocs build
|
||||||
|
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
uses: peaceiris/actions-gh-pages@v2.0.0
|
uses: peaceiris/actions-gh-pages@v2.1.0
|
||||||
env:
|
env:
|
||||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||||
PUBLISH_BRANCH: gh-pages
|
PUBLISH_BRANCH: gh-pages
|
||||||
|
|||||||
Reference in New Issue
Block a user