We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d906322 commit 9e4e9a2Copy full SHA for 9e4e9a2
.github/workflows/desktop-build.yml
@@ -27,7 +27,10 @@ jobs:
27
node-version: 16
28
29
- name: Install global dependencies
30
- run: pnpm install
+ uses: pnpm/action-setup@v2.0.1
31
+ with:
32
+ version: latest
33
+ run_install: true
34
35
- name: Install npm dependencies
36
run: yarn
@@ -42,6 +45,7 @@ jobs:
42
45
# (No need to define this secret in the repo settings)
43
46
github_token: ${{ secrets.github_token }}
44
47
- # If the commit is tagged with a version (e.g. "v1.0.0"),
- # release the app after building
- 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