Skip to content

fix: Ssa typing for assign_lvalue_index (#4289) #6

fix: Ssa typing for assign_lvalue_index (#4289)

fix: Ssa typing for assign_lvalue_index (#4289) #6

Workflow file for this run

name: Publish documentation
on:
push:
branches:
- master
paths: [docs/**]
jobs:
publish-docs:
name: Publish docs
runs-on: ubuntu-latest
steps:
- name: Checkout release branch
uses: actions/checkout@v4
- name: Install Yarn dependencies
uses: ./.github/actions/setup
- name: Install wasm-bindgen-cli
uses: taiki-e/install-action@v2
with:
tool: [email protected]
- name: Install wasm-opt
run: |
npm i wasm-opt -g
- name: Build docs for deploying
working-directory: docs
run:
yarn workspaces foreach -Rt run build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: './docs/build'
production-branch: master
production-deploy: true
github-token: ${{ secrets.GITHUB_TOKEN }}
enable-github-deployment: false
deploy-message: "Deploy from GitHub Actions for tag ${{ inputs.noir-ref }}"
enable-commit-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1