We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0fd283a + 3c78055 commit 8857cf3Copy full SHA for 8857cf3
1 file changed
.github/workflows/electron-build.yaml
@@ -25,20 +25,25 @@ jobs:
25
26
- name: Install Dependencies
27
run: npm install
28
+ working-directory: desktop
29
30
- name: build-linux
31
if: matrix.os == 'ubuntu-latest'
32
run: npm run build:linux
33
34
35
- name: build-mac
36
if: matrix.os == 'macos-latest'
37
run: npm run build:mac
38
39
40
- name: build-win
41
if: matrix.os == 'windows-latest'
42
run: npm run build:win
43
44
45
- name: release
46
+ if: startsWith(github.ref, 'refs/tags/')
47
uses: softprops/action-gh-release@v1
48
with:
49
draft: true
0 commit comments