Skip to content

評価の流れに関する図を追加 (#951) #44

評価の流れに関する図を追加 (#951)

評価の流れに関する図を追加 (#951) #44

Workflow file for this run

on: { push: { tags: ["*"] } }
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci && npm run build
env:
GOOGLE_ANALYTICS_TRACKING_ID: ${{ vars.GOOGLE_ANALYTICS_TRACKING_ID }}
- uses: actions/upload-pages-artifact@v4
with:
path: build
- id: deployment
uses: actions/deploy-pages@v4