We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b16c03 commit 6eaf1ebCopy full SHA for 6eaf1eb
1 file changed
.github/workflows/build-release.yml
@@ -11,6 +11,9 @@ jobs:
11
name: 👷♂️ Build Release
12
runs-on: ubuntu-latest
13
if: ${{ github.event.workflow_run.conclusion == 'success' }}
14
+ strategy:
15
+ matrix:
16
+ node-version: [ 22.12.0 ]
17
permissions:
18
contents: write
19
pull-requests: write
@@ -21,11 +24,10 @@ jobs:
21
24
with:
22
25
fetch-depth: 0
23
26
- - name: 🟢 Setup Node.js
27
+ - name: 🟢 Setup Node.js ${{ matrix.node-version }}
28
uses: actions/setup-node@v4
29
- node-version: '22'
- registry-url: 'https://registry.npmjs.org'
30
+ node-version: ${{ matrix.node-version }}
31
32
- name: 🔐 Setup npm auth
33
run: |
0 commit comments