Skip to content

Commit fea9a39

Browse files
committed
fix
1 parent a3cbc12 commit fea9a39

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

.github/workflows/release.yaml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Release on tag
22

33
on:
44
push:
5-
tags:
6-
- '*'
5+
# tags:
6+
# - '*'
77

88
jobs:
99
build-and-release:
@@ -35,23 +35,18 @@ jobs:
3535
target
3636
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
3737

38+
- uses: pnpm/action-setup@v4
39+
name: Install pnpm
40+
with:
41+
version: 10
42+
run_install: false
43+
3844
- name: Setup Node
3945
uses: actions/setup-node@v4
4046
with:
4147
node-version: '22'
4248
cache: 'pnpm'
4349

44-
- name: Install pnpm
45-
run: npm install -g pnpm
46-
47-
- name: Cache node_modules
48-
uses: actions/cache@v4
49-
with:
50-
path: node_modules
51-
key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
52-
restore-keys: |
53-
${{ runner.os }}-pnpm-
54-
5550
- name: Install dependencies
5651
run: pnpm install
5752

0 commit comments

Comments
 (0)