File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ DRA_CREDS=$(vault kv get -field=data -format=json kv/ci-shared/release/dra-role)
4646chmod -R a+r $PWD /.ci/output/*
4747chmod -R a+w $PWD /.ci/output
4848# Artifacts should be generated
49- if [ " $WORKFLOW " = " staging " ]; then
49+ if [ " $WORKFLOW " = " snapshot " ]; then
5050 docker run --rm \
5151 --name release-manager \
5252 -e VAULT_ADDR=" $( echo " $DRA_CREDS " | jq -r ' .vault_addr' ) " \
@@ -62,7 +62,7 @@ if [ "$WORKFLOW" = "staging" ]; then
6262 --version " $STACK_VERSION " \
6363 --artifact-set main
6464fi
65- if [ " $WORKFLOW " = " snapshot " ]; then
65+ if [ " $WORKFLOW " = " staging " ]; then
6666 docker run --rm \
6767 --name release-manager \
6868 -e VAULT_ADDR=" $( echo " $DRA_CREDS " | jq -r ' .vault_addr' ) " \
Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ allprojects {
2121 group = " co.elastic.clients"
2222 // Release manager provides a $VERSION. If not present, it's a local or CI snapshot build.
2323 version = System .getenv(" VERSION" ) ? :
24- (File (project.rootDir, " config/version.txt" ).readText().trim() + " -" +
25- File (project.rootDir, " config/version-qualifier.txt" ).readText().trim() + " -SNAPSHOT" )
24+ (File (project.rootDir, " config/version.txt" ).readText().trim() + " -SNAPSHOT" )
2625 repositories {
2726 maven {
2827 name = " Elastic-Snapshots"
You can’t perform that action at this time.
0 commit comments