Skip to content

Commit

Permalink
remove gh-pages.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ease112 committed Oct 3, 2024
1 parent 8c2429e commit a5dce55
Showing 1 changed file with 47 additions and 47 deletions.
94 changes: 47 additions & 47 deletions .github/workflows/gh-pages.yml
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

0 comments on commit a5dce55

Please sign in to comment.