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 f61f58b commit d686e5bCopy full SHA for d686e5b
1 file changed
.github/workflows/test_and_publish.yml
@@ -58,7 +58,13 @@ jobs:
58
needs: test-code
59
if: |
60
!failure() &&
61
- startsWith(github.ref, 'refs/heads/develop')
+ (
62
+ startsWith(github.ref, 'refs/heads/develop') ||
63
64
+ github.event_name == 'push' &&
65
+ startsWith(github.ref, 'refs/tags/v')
66
+ )
67
68
strategy:
69
matrix:
70
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -84,7 +90,13 @@ jobs:
84
90
85
91
86
92
87
93
94
95
96
97
98
99
88
100
89
101
steps:
102
- name: Check out code
0 commit comments