Skip to content

fix: correct polyfill paths in nuspec, remove dead code #97

fix: correct polyfill paths in nuspec, remove dead code

fix: correct polyfill paths in nuspec, remove dead code #97

Workflow file for this run

name: Trigger Docs Rebuild
on:
push:
branches: [main]
paths:
- 'src/**'
- 'README.md'
release:
types: [published]
workflow_dispatch:
jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Trigger Mintlify docs rebuild
run: |
gh api repos/ANcpLua/ancplua-docs/dispatches \
--method POST \
--input - <<EOF
{
"event_type": "sdk-release",
"client_payload": {
"source": "ANcpLua.NET.Sdk",
"ref": "${{ github.ref }}",
"sha": "${{ github.sha }}"
}
}
EOF
env:
GH_TOKEN: ${{ secrets.DOCS_TRIGGER_PAT }}