Skip to content

try to fix workflow #153

try to fix workflow

try to fix workflow #153

Workflow file for this run

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