Skip to content
This repository was archived by the owner on Aug 16, 2025. It is now read-only.

Commit af70ca5

Browse files
committed
DIE
1 parent 5d4ef2e commit af70ca5

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

.github/release.yml

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,22 @@ on:
77
jobs:
88
release:
99
name: Release
10-
runs-on: ubuntu-latest
11-
timeout-minutes: 10
12-
permissions:
13-
contents: write
14-
15-
steps:
16-
17-
- name: Checkout
18-
uses: actions/checkout@v4
19-
20-
- name: Setup Node.js
21-
uses: actions/[email protected]
22-
with:
23-
node-version: 22.11.0
10+
runs-on: ubuntu-latest-22.04
11+
strategy:
12+
matrix:
13+
node-version: [22]
2414

25-
- name: Install pnpm
26-
uses: pnpm/action-setup@v4 # v4
27-
with:
28-
version: 8
29-
run_install: true
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Install pnpm
18+
uses: pnpm/action-setup@v4
19+
with:
20+
version: 9
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
cache: 'pnpm'
3026

3127
- name: Release
3228
env:

0 commit comments

Comments
 (0)