File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -189,31 +189,31 @@ trigger-pipeline:
189189 - .release-generic
190190 - .driver-versions
191191 rules :
192- - if : $CI_PIPELINE_SOURCE != "schedule"
192+ - if : $CI_PIPELINE_SOURCE != "schedule" && $CI_COMMIT_TAG == null
193193
194194.release-ubuntu24.04 :
195195 # Perform for each DRIVER_VERSION
196196 extends :
197197 - .release-generic
198198 - .driver-versions-ubuntu24.04
199199 rules :
200- - if : $CI_PIPELINE_SOURCE != "schedule"
200+ - if : $CI_PIPELINE_SOURCE != "schedule" && $CI_COMMIT_TAG == null
201201
202202.release-rhel9 :
203203 # Perform for each DRIVER_VERSION
204204 extends :
205205 - .release-generic
206206 - .driver-versions
207207 rules :
208- - if : $CI_PIPELINE_SOURCE != "schedule"
208+ - if : $CI_PIPELINE_SOURCE != "schedule" && $CI_COMMIT_TAG == null
209209
210210.release :
211211 # Perform for each DRIVER_VERSION
212212 extends :
213213 - .release-generic
214214 - .driver-versions
215215 rules :
216- - if : $CI_PIPELINE_SOURCE != "schedule"
216+ - if : $CI_PIPELINE_SOURCE != "schedule" && $CI_COMMIT_TAG == null
217217
218218# Define a staging release step that pushes an image to an internal "staging" repository
219219# This is triggered for all pipelines (i.e. not only tags) to test the pipeline steps
You can’t perform that action at this time.
0 commit comments