Skip to content

flow: almost feature parity with typescript #24

flow: almost feature parity with typescript

flow: almost feature parity with typescript #24

Workflow file for this run

name: Docs
on:
push:
branches: [master]
workflow_dispatch:
jobs:
deploy:
name: Deploy Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Install docs-related dependencies
run: cd docs && npm install && npm run build && cd ..
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: docs/.vitepress/dist
fqdn: dataclass.js.org
verbose: true
env:
GITHUB_TOKEN: ${{ secrets.DOCS_GITHUB_TOKEN }}