-
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
Showing
1 changed file
with
47 additions
and
47 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 |
---|---|---|
@@ -1,54 +1,54 @@ | ||
name: github pages | ||
# name: github pages | ||
|
||
# masterブランチにプッシュしたときjobsに記述した操作を行う | ||
on: | ||
push: | ||
branches: | ||
- kgrc4si | ||
# # masterブランチにプッシュしたときjobsに記述した操作を行う | ||
# on: | ||
# push: | ||
# branches: | ||
# - kgrc4si | ||
|
||
jobs: | ||
build-deploy: | ||
# ubuntu OS を仮想マシン上に用意する | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
# 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: '16.x' | ||
# # Node.js環境のセットアップを行う | ||
# - name: setup node | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: '16.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 | ||
working-directory: ./ui | ||
# # 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 | ||
# working-directory: ./ui | ||
|
||
# Next.jsアプリをビルドする | ||
# プロジェクトルート直下に.nextディレクトリができる | ||
- name: build | ||
run: npm run gh-build | ||
working-directory: ./ui | ||
# # Next.jsアプリをビルドする | ||
# # プロジェクトルート直下に.nextディレクトリができる | ||
# - name: build | ||
# run: npm run gh-build | ||
# working-directory: ./ui | ||
|
||
# 静的なHTMLとしてNext.jsアプリを生成する | ||
# プロジェクトルート直下にoutディレクトリができる | ||
# そのなかに、HTMLファイル群と、それらが読み込むJSファイル群を収めた_nextディレクトリがある | ||
- name: export | ||
run: npm run export | ||
working-directory: ./ui | ||
# # 静的なHTMLとしてNext.jsアプリを生成する | ||
# # プロジェクトルート直下にoutディレクトリができる | ||
# # そのなかに、HTMLファイル群と、それらが読み込むJSファイル群を収めた_nextディレクトリがある | ||
# - name: export | ||
# run: npm run export | ||
# working-directory: ./ui | ||
|
||
# gh-pagesブランチにoutディレクトリの中身をプッシュする | ||
# gh-pagesブランチは自動的に作成される | ||
- name: deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./ui/out | ||
# # gh-pagesブランチにoutディレクトリの中身をプッシュする | ||
# # gh-pagesブランチは自動的に作成される | ||
# - name: deploy | ||
# uses: peaceiris/actions-gh-pages@v3 | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# publish_dir: ./ui/out |