Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
permissions:
id-token: write # Required for OIDC provenance
contents: read
attestations: write

jobs:
build:
Expand All @@ -32,4 +33,10 @@ jobs:
run: npm install -g npm@11.5.1
- run: npm --version
- run: npm install --package-lock=false
- run: npm publish
- name: Pack
run: npm pack
- name: Attest
uses: actions/attest-build-provenance@v2
with:
subject-path: "*.tgz"
- run: npm publish --provenance
Loading