Skip to content

Commit 81cc77c

Browse files
ralyodioclaude
andcommitted
fix(ci): npm-publish Summary step points at apps/cli
Post-monorepo move the Summary step still required ./cli/package.json, crashing after the skip-already-published check. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent ab8ff16 commit 81cc77c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ jobs:
6868
- name: Summary
6969
if: always()
7070
run: |
71-
VERSION=$(node -p "require('./cli/package.json').version")
71+
VERSION=$(node -p "require('./apps/cli/package.json').version")
7272
echo "## npm Publish Summary" >> $GITHUB_STEP_SUMMARY
7373
echo "" >> $GITHUB_STEP_SUMMARY
7474
echo "- **Package**: @profullstack/threatcrush" >> $GITHUB_STEP_SUMMARY
7575
echo "- **Version**: $VERSION" >> $GITHUB_STEP_SUMMARY
76+
echo "- **Already published**: ${{ steps.check.outputs.exists }}" >> $GITHUB_STEP_SUMMARY
7677
echo "- **Dry Run**: ${{ github.event.inputs.dry_run || 'false' }}" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)