Skip to content

Commit ea66595

Browse files
Changing workflow triggers
1 parent 8b4d26d commit ea66595

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/build-linux-installer-deb.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: Linux .deb installer on Python 3.8
22

33
on:
4-
create:
4+
push:
55
tags:
6-
- v*
6+
- '*'
77

88
jobs:
99
build:
10+
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
1011
name: Linux .deb installer on Python 3.8
1112
runs-on: ${{ matrix.os }}
1213
timeout-minutes: 40

.github/workflows/build-linux-installer-rpm.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: Linux .rpm installer on Python 3.9
22

33
on:
4-
create:
4+
push:
55
tags:
6-
- v*
6+
- '*'
77

88
jobs:
99
build:
10+
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
1011
name: Linux .rpm installer on Python 3.9
1112
runs-on: ubuntu-latest
1213
container:

.github/workflows/build-macos-installer.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: MacOS installer on Catalina and Python 3.8
22

33
on:
4-
create:
4+
push:
55
tags:
6-
- v*
6+
- '*'
77

88
jobs:
99
build:
10+
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
1011
name: MacOS installer on Catalina and Python 3.8
1112
runs-on: ${{ matrix.os }}
1213
timeout-minutes: 40

.github/workflows/build-windows-installer.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: Windows Installer on Windows 10 and Python 3.9
22

33
on:
4-
create:
4+
push:
55
tags:
6-
- v*
6+
- '*'
77

88
jobs:
99
build:
10+
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
1011
name: Windows Installer on Windows 10 and Python 3.9
1112
runs-on: [windows-latest]
1213
timeout-minutes: 40

0 commit comments

Comments
 (0)