We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91504cd commit 683f3c0Copy full SHA for 683f3c0
2 files changed
.github/workflows/onPushPackaging.yml
@@ -31,6 +31,9 @@ jobs:
31
cache: 'pnpm'
32
- run: pnpm install --frozen-lockfile
33
- run: pnpm run build
34
+ - name: Install NSIS (Windows)
35
+ if: ${{ matrix.os == 'windows-latest' }}
36
+ run: choco install nsis.portable --no-progress -y
37
- name: Build installer
38
run: pnpm -C cli exec oclif ${{ matrix.command }}
39
- name: Upload installer artifact
.github/workflows/onRelease.yml
@@ -35,6 +35,9 @@ jobs:
40
41
42
43
0 commit comments