Skip to content

docs: tutorial for dynamically managed flows #379

docs: tutorial for dynamically managed flows

docs: tutorial for dynamically managed flows #379

Workflow file for this run

name: docs
on:
pull_request:
branches: [main]
paths:
- docs/**
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: write
jobs:
test-deploy:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
run: yarn --cwd docs install --frozen-lockfile
- name: Test build website
run: yarn --cwd docs build
deploy:
name: Release Docs
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: ./.github/workflows/_doc_release.yml
secrets: inherit