We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e594931 commit e890865Copy full SHA for e890865
1 file changed
.github/workflows/release.yml
@@ -53,3 +53,12 @@ jobs:
53
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
54
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55
run: pnpm exec semantic-release
56
+
57
+ - name: Trigger docs rebuild
58
+ if: success()
59
+ run: |
60
+ curl -X POST \
61
+ -H "Accept: application/vnd.github.v3+json" \
62
+ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
63
+ https://api.github.com/repos/framersai/agentos-live-docs/dispatches \
64
+ -d '{"event_type":"docs-rebuild"}' || true
0 commit comments