Skip to content

Commit 01480e1

Browse files
ci(release): fix publish-lib-init-pinned-tags job dependencies [backport 3.2] (#12681)
Backport 268284e from #12670 to 3.1. ## Checklist - [x] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description articulates the motivation for the change - The change includes tests OR the PR description describes a testing strategy - The PR description notes risks associated with the change, if any - Newly-added code is easy to change - The change follows the [library release note guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html) - The change includes or references documentation updates if necessary - Backport labels are set (if [applicable](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)) ## Reviewer Checklist - [ ] Reviewer has checked that all the criteria below are met - Title is accurate - All changes are related to the pull request's stated goal - Avoids breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes - Testing strategy adequately addresses listed risks - Newly-added code is easy to change - Release note makes sense to a user of the library - If necessary, author has acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment - Backport labels are set in a manner that is consistent with the [release branch maintenance policy](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting) Co-authored-by: Brett Langdon <[email protected]>
1 parent e1a7019 commit 01480e1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.gitlab-ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ promote-oci-to-prod:
8888
stage: release
8989
rules: null
9090
only:
91-
- /^v[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]+)?$/
91+
# TODO: Support publishing rc releases
92+
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
9293
needs:
9394
- job: release_pypi_prod
9495
- job: package-oci
@@ -116,7 +117,8 @@ publish-lib-init-ghcr-tags:
116117
stage: release
117118
rules: null
118119
only:
119-
- /^v[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]+)?$/
120+
# TODO: Support publishing rc releases
121+
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
120122
needs:
121123
- job: release_pypi_prod
122124
- job: create-multiarch-lib-injection-image
@@ -125,7 +127,8 @@ publish-lib-init-pinned-tags:
125127
stage: release
126128
rules: null
127129
only:
128-
- /^v[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]+)?$/
130+
# TODO: Support publishing rc releases
131+
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
129132
needs:
130133
- job: release_pypi_prod
131134
- job: create-multiarch-lib-injection-image

0 commit comments

Comments
 (0)