Skip to content

NTTとう道見学会2025のMarkdownファイルを追加 #170

NTTとう道見学会2025のMarkdownファイルを追加

NTTとう道見学会2025のMarkdownファイルを追加 #170

Workflow file for this run

on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.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:
cache: npm
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
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.dev
runs-on: ubuntu-24.04
steps:
- uses: actions/deploy-pages@v4