Skip to content

Commit 41b79c0

Browse files
committed
Change version of release action
1 parent 234c1b4 commit 41b79c0

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/build-release.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
name: Build/release
22

3-
on: push
3+
on:
4+
push:
5+
tags:
6+
- '*' # Push events to every tag not containing /
7+
pull_request:
48

59
jobs:
610
release:
711
runs-on: ${{ matrix.os }}
12+
permissions:
13+
packages: write
14+
contents: write
815

916
strategy:
1017
matrix:
@@ -17,10 +24,10 @@ jobs:
1724
- name: Install Node.js, NPM and Yarn
1825
uses: actions/setup-node@v1
1926
with:
20-
node-version: 20
27+
node-version: 18
2128

2229
- name: Build/release Electron app
23-
uses: Yan-Jobs/action-electron-builder@v1.7.0
30+
uses: samuelmeuli/action-electron-builder@v1
2431
with:
2532
# GitHub token, automatically provided to the action
2633
# (No need to define this secret in the repo settings)

0 commit comments

Comments
 (0)