Skip to content

Commit 927b4cc

Browse files
ci: run build and sign jobs on tag push
1 parent aeb1591 commit 927b4cc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-and-sign.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727

2828
jobs:
2929
build-linux:
30-
if: github.event.inputs.build_linux == 'true'
30+
if: github.event_name == 'push' || github.event.inputs.build_linux == 'true'
3131
runs-on: ubuntu-latest
3232
environment: code-signing
3333
timeout-minutes: 15
@@ -91,7 +91,7 @@ jobs:
9191
retention-days: 90
9292

9393
build-macos:
94-
if: github.event.inputs.build_macos == 'true'
94+
if: github.event_name == 'push' || github.event.inputs.build_macos == 'true'
9595
runs-on: macos-latest
9696
environment: code-signing
9797
timeout-minutes: 15
@@ -166,7 +166,7 @@ jobs:
166166
retention-days: 90
167167

168168
build-windows:
169-
if: github.event.inputs.build_windows == 'true'
169+
if: github.event_name == 'push' || github.event.inputs.build_windows == 'true'
170170
runs-on: windows-latest
171171
environment: code-signing
172172
timeout-minutes: 15

0 commit comments

Comments
 (0)