Skip to content

add 2024

add 2024 #27

Workflow file for this run

name: Build Pages
permissions:
contents: read
pages: write
id-token: write
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 18.13.0
- name: Install dependencies and build
run: |
npm install
npm run build
- name: Upload GitHub Pages artifact
uses: actions/[email protected]
with:
path: build/
- name: Deploy GitHub Pages site
uses: actions/[email protected]