Skip to content

fix ms and mw

fix ms and mw #118

Workflow file for this run

on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: write
jobs:
pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: pypa/hatch@install
- run: sudo apt-get update; sudo apt-get install --no-install-recommends graphviz graphviz-dev
- run: cd gatelogue-client; pnpm install --no-frozen-lockfile; pnpm run build
- run: cd gatelogue-client/dist; echo > .nojekyll
- run: cd gatelogue-aggregator; hatch run docs:build
- run: mkdir gatelogue-client/dist/docs
- run: cp -r gatelogue-aggregator/docs/_build/html/* gatelogue-client/dist/docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./gatelogue-client/dist