this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add build provenance attestation step to npm publish workflow

🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>

+9
+9
.github/workflows/npm-publish.yml
··· 4 4 release: 5 5 types: [created] 6 6 7 + permissions: 8 + id-token: write 9 + attestations: write 10 + 7 11 jobs: 8 12 publish: 9 13 runs-on: ubuntu-latest ··· 21 25 22 26 - name: Build 23 27 run: npm run build 28 + 29 + - name: Generate build provenance 30 + uses: actions/attest-build-provenance@v2 31 + with: 32 + subject-path: './index.js' 24 33 25 34 - name: Publish to npm 26 35 run: npm publish --access public