1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/.github/workflows/docs.yml

23 lines
835 B
YAML
Raw Normal View History

2020-02-08 21:06:50 +09:00
name: docs
on: push
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
2020-02-08 21:41:36 +09:00
- run: echo "::set-env name=YARN_CACHE_DIR::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ env.YARN_CACHE_DIR }}
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-
2020-02-08 21:06:50 +09:00
- uses: actions/setup-node@v1
with: { node-version: 12 }
- run: yarn
2020-02-08 21:30:24 +09:00
- run: NEXT_ASSET_PREFIX=/${GITHUB_REPOSITORY#*/} yarn doc
2020-02-08 23:00:29 +09:00
- run: git add -f docs
2020-02-08 22:06:47 +09:00
- run: git -c user.name=bot -c user.email=octocat@github.com commit -m docs
2020-02-08 22:10:44 +09:00
- run: git remote add github "https://github:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
2020-02-08 22:06:47 +09:00
env: { GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" }
2020-02-08 22:51:53 +09:00
- run: git subtree push --prefix docs origin gh-pages