Skip to content

Commit 6eaf1eb

Browse files
committed
fix: fix build-release.yml
1 parent 1b16c03 commit 6eaf1eb

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
name: 👷‍♂️ Build Release
1212
runs-on: ubuntu-latest
1313
if: ${{ github.event.workflow_run.conclusion == 'success' }}
14+
strategy:
15+
matrix:
16+
node-version: [ 22.12.0 ]
1417
permissions:
1518
contents: write
1619
pull-requests: write
@@ -21,11 +24,10 @@ jobs:
2124
with:
2225
fetch-depth: 0
2326

24-
- name: 🟢 Setup Node.js
27+
- name: 🟢 Setup Node.js ${{ matrix.node-version }}
2528
uses: actions/setup-node@v4
2629
with:
27-
node-version: '22'
28-
registry-url: 'https://registry.npmjs.org'
30+
node-version: ${{ matrix.node-version }}
2931

3032
- name: 🔐 Setup npm auth
3133
run: |

0 commit comments

Comments
 (0)