Skip to content

🐛 ci: fix npm setup #3

🐛 ci: fix npm setup

🐛 ci: fix npm setup #3

name: Deploy website
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd ${{github.workspace}}/website/
- uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "npm"
cache-dependency-path: website/package-lock.json
- run: npm ci
- run: run run build
- uses: actions/[email protected]
with:
name: "website-build-artifact"
path: "dist/**"
overwrite: true
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
artifact_name: "website-build-artifact"