We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3baf97b commit 324e375Copy full SHA for 324e375
.github/workflows/release-electron.yml
@@ -1,8 +1,6 @@
1
name: Build Electron Release
2
3
-on:
4
- push:
5
- tags: -"v*.*.*"
+on: push
6
7
jobs:
8
build:
@@ -45,10 +43,10 @@ jobs:
45
43
uses: softprops/action-gh-release@v2
46
44
with:
47
files: linux.zip
48
- if: runner.os == 'Linux'
+ if: runner.os == 'Linux' && startsWith(github.ref, 'refs/tags/')
49
50
- name: Create Release Build (Windows)
51
52
53
files: windows-x64.zip
54
- if: runner.os == 'Windows'
+ if: runner.os == 'Windows' && startsWith(github.ref, 'refs/tags/')
0 commit comments