Skip to content

fix: align gender chart annotations #15

fix: align gender chart annotations

fix: align gender chart annotations #15

Workflow file for this run

name: Deploy DArts
on:
push:
branches:
- master
- main
workflow_dispatch:
permissions:
contents: write
concurrency:
group: github-pages
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: website/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: website/dist
publish_branch: gh-pages
force_orphan: true