fix: correct polyfill paths in nuspec, remove dead code #97
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |