We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ad4fd3 commit 50616e8Copy full SHA for 50616e8
1 file changed
.github/workflows/dev-release.yml
@@ -19,16 +19,16 @@ jobs:
19
- uses: actions/checkout@v4
20
21
- uses: actions/setup-node@v4
22
- with: { node-version: 20, cache: 'npm' }
+ with: { node-version: 20, cache: yarn }
23
24
- - run: npm ci
+ - name: Enable corepack
25
+ - run: corepack enable
26
+
27
+ - name: Install dependencies
28
+ - run: yarn install --frozen-lockfile
29
30
- name: Build electron (Windows, macOS, Linux)
- uses: samuelmeuli/action-electron-builder@v1
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- release: false
31
- args: --publish=never
+ run: yarn build
32
33
- uses: actions/upload-artifact@v4
34
with:
0 commit comments