We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8af38d commit 0ec3b69Copy full SHA for 0ec3b69
.github/workflows/build.yml
@@ -25,12 +25,16 @@ jobs:
25
name: Node.js ${{matrix.node-version}} on ${{matrix.os}}
26
needs: create-release
27
runs-on: ${{matrix.os}}
28
-
29
strategy:
30
matrix:
31
os: [macos-latest, windows-latest, macos-13, windows-11-arm]
32
node-version: [20, 22, 23, 24]
33
+ permissions:
34
+ id-token: write
35
+ contents: read
36
+ attestations: write
37
+
38
steps:
39
- uses: actions/checkout@v4
40
with:
@@ -50,6 +54,10 @@ jobs:
50
54
env:
51
55
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
52
56
run: npm run save-to-github
57
+ - name: Attest
58
+ uses: actions/attest-build-provenance@v2
59
+ with:
60
+ subject-path: '${{ github.workspace }}/build/Release/re2.node'
53
61
62
build-linux-node-20:
63
name: Node.js 20 on Bullseye
0 commit comments