Skip to content

Commit a9dd7ea

Browse files
authored
Merge pull request NVIDIA#466 from JunAr7112/remove_release_staging_on_tags
Remove release staging on tags
2 parents fd5b500 + dced962 commit a9dd7ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.common-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)