Skip to content

[website] Fixes CI build #171

[website] Fixes CI build

[website] Fixes CI build #171

Workflow file for this run

name: Website
on:
push:
branches:
- main
jobs:
publish:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build website
run: npm run website:build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: packages/website/build
fqdn: www.sigmajs.org
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}