We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ba7972 commit d752a05Copy full SHA for d752a05
1 file changed
.github/workflows/release.yml
@@ -26,8 +26,19 @@ jobs:
26
# https://github.community/t/action-does-not-trigger-another-on-push-tag-action/17148/8
27
token: ${{ steps.generate_github_token.outputs.token }}
28
29
- - name: Setup
30
- uses: ./.github/actions/ci
+ - name: Install pnpm
+ uses: pnpm/action-setup@v4.1.0
31
+ with:
32
+ run_install: false
33
+
34
+ - name: Setup Node.js
35
+ uses: actions/setup-node@v4
36
37
+ node-version-file: ".nvmrc"
38
+ cache: "pnpm"
39
40
+ - name: Install
41
+ run: pnpm install --no-frozen-lockfile
42
43
- name: Creating .npmrc
44
run: |
0 commit comments