mirror of
https://github.com/videojs/video.js.git
synced 2025-01-02 06:32:07 +02:00
Enable supply chain security through npm provenance attestation
- Configure GitHub Actions workflow for secure publishing - Enable automatic provenance generation during npm publish - Add integrity verification through Sigstore transparency logs
This commit is contained in:
parent
ecef37c1fc
commit
18c1183e94
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@ -11,6 +11,10 @@ jobs:
|
||||
env:
|
||||
NETLIFY_BASE: 'videojs-preview.netlify.app'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write # Required for provenance
|
||||
packages: write # Required for publishing
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
@ -37,7 +41,7 @@ jobs:
|
||||
|
||||
# publish runs build for us via a prepublishOnly script
|
||||
- name: npm release
|
||||
run: npm publish --tag next
|
||||
run: npm publish --provenance --tag next
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user