File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 52
52
echo "::notice::Using Docker build image tag: ${TAG}"
53
53
- name : Update the Docker build image in GitLab CI config
54
54
run : |
55
- sed -i 's| BUILDER_IMAGE_VERSION_PREFIX:.*|BUILDER_IMAGE_VERSION_PREFIX: "${{ steps.define-tag.outputs.tag }}-"|' .gitlab-ci.yml
55
+ sed -i '' -E 's|( BUILDER_IMAGE_VERSION_PREFIX:)[^#]*([#].*)|\1 "${{ steps.define-tag.outputs.tag }}-" \2 |' .gitlab-ci.yml
56
56
- name : Commit and push changes
57
57
env :
58
58
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ variables:
27
27
GRADLE_VERSION : " 8.5" # must match gradle-wrapper.properties
28
28
MAVEN_REPOSITORY_PROXY : " http://artifactual.artifactual.all-clusters.local-dc.fabric.dog:8081/repository/maven-central/"
29
29
GRADLE_PLUGIN_PROXY : " http://artifactual.artifactual.all-clusters.local-dc.fabric.dog:8081/repository/gradle-plugin-portal-proxy/"
30
- BUILDER_IMAGE_VERSION_PREFIX : " v25.05-"
30
+ BUILDER_IMAGE_VERSION_PREFIX : " " # use either an empty string (e.g. "") for latest images or a version followed by a hyphen (e.g. " v25.05-")
31
31
REPO_NOTIFICATION_CHANNEL : " #apm-java-escalations"
32
32
DEFAULT_TEST_JVMS : /^(8|11|17|21)$/
33
33
PROFILE_TESTS :
You can’t perform that action at this time.
0 commit comments