Skip to content

Commit 1e6c886

Browse files
committed
fix(ci): stage docs/llms-full.txt in the release commit so it stops drifting
The release step ran docs:sync (which regenerates README, AGENTS, and docs/llms-full.txt) but only git-added README and AGENTS, so llms-full.txt was never committed by a release and perpetually drifted from the spec, tripping the docs-drift pre-push guard on every later push.
1 parent 8b44330 commit 1e6c886

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
git config user.name "github-actions[bot]"
8080
git config user.email "github-actions[bot]@users.noreply.github.com"
8181
VERSION=$(node -p "require('./package.json').version")
82-
git add package.json src/version.ts specs/openapi.json src/ README.md AGENTS.md
82+
git add package.json src/version.ts specs/openapi.json src/ README.md AGENTS.md docs/llms-full.txt
8383
git commit -m "release: v$VERSION"
8484
git tag "v$VERSION"
8585
git push --follow-tags

0 commit comments

Comments
 (0)