Skip to content

Commit 9e4e9a2

Browse files
committed
chore: install pnpm and dont release
just handle it manual
1 parent d906322 commit 9e4e9a2

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/desktop-build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
node-version: 16
2828

2929
- name: Install global dependencies
30-
run: pnpm install
30+
uses: pnpm/action-setup@v2.0.1
31+
with:
32+
version: latest
33+
run_install: true
3134

3235
- name: Install npm dependencies
3336
run: yarn
@@ -42,6 +45,7 @@ jobs:
4245
# (No need to define this secret in the repo settings)
4346
github_token: ${{ secrets.github_token }}
4447

45-
# If the commit is tagged with a version (e.g. "v1.0.0"),
46-
# release the app after building
47-
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
48+
release: false
49+
# # If the commit is tagged with a version (e.g. "v1.0.0"),
50+
# # release the app after building
51+
# release: ${{ startsWith(github.ref, 'refs/tags/v') }}

0 commit comments

Comments
 (0)