2020-02-08 21:06:50 +09:00
|
|
|
name: docs
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- 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 21:06:50 +09:00
|
|
|
- run: git add docs
|
2020-02-08 21:30:24 +09:00
|
|
|
- run: git -c user.name=octocat -c user.email=octocat@github.com commit -m docs
|
2020-02-08 21:33:33 +09:00
|
|
|
- run: git remote add github "https://${NAME}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
|
2020-02-08 21:06:50 +09:00
|
|
|
env:
|
|
|
|
NAME: octocat
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- run: git push github "${GITHUB_REF}"
|