-
-
Notifications
You must be signed in to change notification settings - Fork 2
90 lines (68 loc) · 1.9 KB
/
Copy pathbuild.yml
File metadata and controls
90 lines (68 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Prebuild
on:
release:
types: [published]
permissions:
contents: write
jobs:
prebuild:
runs-on: windows-latest
permissions:
id-token: write
contents: read
attestations: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node.js
uses: actions/setup-node@v4
- name: Install node_modules
run: npm ci
- name: Prebuild
run: npm run prebuildify
- name: Generate x64 attestation
uses: actions/attest@59d89421af93a897026c735860bf21b6eb4f7b26 # v4.1.0
with:
subject-path: prebuilds/win32-x64/@indutny+simple-windows-notifications.node
- name: Prebuild arm64
run: npm run prebuildify -- --arch arm64
- name: Generate arm64 attestation
uses: actions/attest@59d89421af93a897026c735860bf21b6eb4f7b26 # v4.1.0
with:
subject-path: prebuilds/win32-arm64/@indutny+simple-windows-notifications.node
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: prebuilds
path: prebuilds/*
publish:
name: Publish
runs-on: windows-latest
needs: prebuild
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node.js
uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org/'
- name: Download built libraries
uses: actions/download-artifact@v4
with:
pattern: prebuilds
path: prebuilds
merge-multiple: true
- name: Install node_modules
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- run: npm test
env:
PREBUILDS_ONLY: 1
- name: Publish
run: npm publish --access public --provenance