Skip to content

try to fix workflow #154

try to fix workflow

try to fix workflow #154

Workflow file for this run

name: Documentation update
on:
push:
branches:
- 'main'
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Dispatch workflow
uses: actions/github-script@v6
with:
github-token: ${{ secrets.PAT_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'kyoto-framework',
repo: 'docs.kyoto.codes',
workflow_id: 'release.yml',
ref: 'main'
})