File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ jobs:
280280
281281 - name : Generate DEPENDENCIES.json
282282 if : github.event_name != 'push'
283- run : npm ls --json --all --omit=dev > DEPENDENCIES.json 2>/dev/null || true
283+ run : mkdir -p generated && npm ls --json --all --omit=dev > generated/ DEPENDENCIES.json 2>/dev/null || true
284284
285285 - name : Push version bump via PR
286286 if : github.event_name != 'push'
@@ -292,10 +292,10 @@ jobs:
292292 BRANCH="release/v${VERSION}"
293293
294294 # Check if there are version bump changes to push
295- if git diff --quiet HEAD -- package.json package-lock.json CHANGELOG.md DEPENDENCIES.json; then
295+ if git diff --quiet HEAD -- package.json package-lock.json CHANGELOG.md generated/ DEPENDENCIES.json; then
296296 echo "No version bump commit to push — skipping PR"
297297 else
298- git add package.json package-lock.json CHANGELOG.md DEPENDENCIES.json
298+ git add package.json package-lock.json CHANGELOG.md generated/ DEPENDENCIES.json
299299 git commit -m "chore: release v${VERSION}"
300300 git push origin "HEAD:refs/heads/${BRANCH}"
301301 gh pr create \
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ grammars/*.wasm
88.claude /codegraph-checked.log
99artifacts /
1010pkg /
11- DEPENDENCIES.md
11+ generated /DEPENDENCIES.md
12+ generated /DEPENDENCIES.json
You can’t perform that action at this time.
0 commit comments