Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

draft initial version #3

draft initial version

draft initial version #3

Workflow file for this run

on: push
name: publish
jobs:
build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
- uses: actions/upload-pages-artifact@v1
with:
path: www
- uses: actions/deploy-pages@v2