Skip to content

feat(08-wasm): expose migrate entry point for 08-wasm (#6231) #18

feat(08-wasm): expose migrate entry point for 08-wasm (#6231)

feat(08-wasm): expose migrate entry point for 08-wasm (#6231) #18

Workflow file for this run

# This deploy-docs workflow was created based on instructions from:
# https://docusaurus.io/docs/deployment
name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "docs/**"
- .github/workflows/deploy-docs.yml
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: docs/package-lock.json
- name: Build website
run: make build-docs
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.6.0
with:
branch: gh-pages
folder: docs/build
single-commit: true