Skip to content

fix: add FlyDSL backend for Fused MoE A4W4 (PR #2113) #47

fix: add FlyDSL backend for Fused MoE A4W4 (PR #2113)

fix: add FlyDSL backend for Fused MoE A4W4 (PR #2113) #47

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: pip install pyyaml
- name: Render site data
run: python scripts/render.py
- name: Assemble site
run: |
mkdir -p _site
cp -r docs/* _site/
cp -r data/ _site/data/
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
publish_branch: gh-pages
keep_files: true