Skip to content

2024年版のとう道見学会のページを作成 #91

2024年版のとう道見学会のページを作成

2024年版のとう道見学会のページを作成 #91

Workflow file for this run

on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./public"
deploy:
if: ${{ github.ref == 'refs/heads/master' }}
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: https://until-tsukuba.github.io
runs-on: ubuntu-22.04
steps:
- uses: actions/deploy-pages@v1