Skip to content

initial commit

initial commit #2

Workflow file for this run

name: Publish
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install NPM dependencies
run: |
npm install
- name: Build and export website
run: |
npm run export
- uses: actions/upload-pages-artifact@v1
with:
path: ./dist