Skip to content

Commit fb5344b

Browse files
Adjust GH actions publish trigger.
1 parent ca41f02 commit fb5344b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/development.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
publish-release:
125125
if: |
126126
github.event_name == 'push' &&
127-
contains(github.ref, 'refs/tags/*.*.*') &&
127+
startsWith(github.ref, 'refs/tags') &&
128128
(
129129
github.repository_owner == 'datajoint' ||
130130
github.repository_owner == 'vathes'
@@ -209,7 +209,7 @@ jobs:
209209
publish-images:
210210
if: |
211211
github.event_name == 'push' &&
212-
contains(github.ref, 'refs/tags/*.*.*') &&
212+
startsWith(github.ref, 'refs/tags') &&
213213
(
214214
github.repository_owner == 'datajoint' ||
215215
github.repository_owner == 'vathes'
@@ -267,7 +267,7 @@ jobs:
267267
publish-docs:
268268
if: |
269269
github.event_name == 'push' &&
270-
contains(github.ref, 'refs/tags/*.*.*') &&
270+
startsWith(github.ref, 'refs/tags') &&
271271
(
272272
github.repository_owner == 'datajoint' ||
273273
github.repository_owner == 'vathes'

0 commit comments

Comments
 (0)