name: Publish to npm on: release: types: [published] workflow_dispatch: inputs: tag: description: 'Tag to publish (e.g., v0.1.0)' required: true type: string jobs: publish: runs-on: ubuntu-latest permissions: contents: read id-token: write # For npm provenance steps: - name: Checkout code uses: actions/checkout@v4 with: ref: ${{ github.event.release.tag_name || inputs.tag }} - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20' registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm ci - name: Build run: npm run build - name: Publish to npm run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }} - name: Publish summary run: | echo "## ✅ Published to npm" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY echo "**Package:** \`@laurentenhoor/devclaw\`" >> $GITHUB_STEP_SUMMARY echo "**Version:** \`$(node -p "require('./package.json').version")\`" >> $GITHUB_STEP_SUMMARY echo "**URL:** https://www.npmjs.com/package/@laurentenhoor/devclaw" >> $GITHUB_STEP_SUMMARY