We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 234c1b4 commit 41b79c0Copy full SHA for 41b79c0
.github/workflows/build-release.yml
@@ -1,10 +1,17 @@
1
name: Build/release
2
3
-on: push
+on:
4
+ push:
5
+ tags:
6
+ - '*' # Push events to every tag not containing /
7
+ pull_request:
8
9
jobs:
10
release:
11
runs-on: ${{ matrix.os }}
12
+ permissions:
13
+ packages: write
14
+ contents: write
15
16
strategy:
17
matrix:
@@ -17,10 +24,10 @@ jobs:
24
- name: Install Node.js, NPM and Yarn
18
25
uses: actions/setup-node@v1
19
26
with:
20
- node-version: 20
27
+ node-version: 18
21
28
22
29
- name: Build/release Electron app
23
- uses: Yan-Jobs/action-electron-builder@v1.7.0
30
+ uses: samuelmeuli/action-electron-builder@v1
31
32
# GitHub token, automatically provided to the action
33
# (No need to define this secret in the repo settings)
0 commit comments