-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
734af65
commit cbe8479
Showing
10 changed files
with
5,658 additions
and
448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: github pages | ||
|
||
# masterブランチにプッシュしたときjobsに記述した操作を行う | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-deploy: | ||
# ubuntu OS を仮想マシン上に用意する | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# Node.js環境のセットアップを行う | ||
- name: setup node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
|
||
# npm install の際にキャッシュを使うよう設定 | ||
- name: Cache dependencies | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
# package.jsonに基づき依存パッケージをインストールする | ||
- name: install | ||
run: npm install --frozen-lockfile | ||
|
||
# Next.jsアプリをビルドする | ||
# プロジェクトルート直下に.nextディレクトリができる | ||
- name: build | ||
run: npm run build | ||
|
||
# 静的なHTMLとしてNext.jsアプリを生成する | ||
# プロジェクトルート直下にoutディレクトリができる | ||
# そのなかに、HTMLファイル群と、それらが読み込むJSファイル群を収めた_nextディレクトリがある | ||
- name: export | ||
run: npm run export | ||
|
||
# しかしGitHub Pagesの仕様として_から始まるディレクトリが見えず404となる | ||
# つまりHTMLからJSを読み込めない | ||
# これを回避するために.nojekyllファイルをoutディレクトリに作る | ||
- name: add nojekyll | ||
run: touch ./out/.nojekyll | ||
|
||
# gh-pagesブランチにoutディレクトリの中身をプッシュする | ||
# gh-pagesブランチは自動的に作成される | ||
- name: deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./out |
Oops, something went wrong.