Skip to content

Update docs website

Update docs website #1

Workflow file for this run

name: Update docs website
on:
release:
types: [published]
workflow_dispatch:
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- name: Trigger ortfo/website build workflow
uses: actions/github-script@v6
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: 'website',
workflow_id: 'build.yml',
ref: 'main'
})