Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsukiKigoshi committed Nov 17, 2023
1 parent 734af65 commit cbe8479
Show file tree
Hide file tree
Showing 10 changed files with 5,658 additions and 448 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/gh-pages.yml
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
Loading

0 comments on commit cbe8479

Please sign in to comment.