We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c088d5 commit 574915dCopy full SHA for 574915d
.ci/scripts/resolve-dra-manifest.sh
@@ -23,7 +23,14 @@ LATEST_VERSION=$(strip_version $LATEST_BUILD)
23
if [ "$LATEST_VERSION" != "$ES_VERSION" ]; then
24
echo "Latest build for '$ARTIFACT' is version $LATEST_VERSION but expected version $ES_VERSION." 1>&2
25
NEW_BRANCH=$(echo $ES_VERSION | sed -E "s/([0-9]+\.[0-9]+)\.[0-9]/\1/g")
26
+
27
+ # Temporary
28
+ if [[ "$ES_VERSION" == "8.16.0" ]]; then
29
+ NEW_BRANCH="8.x"
30
+ fi
31
32
echo "Using branch $NEW_BRANCH instead of $BRANCH." 1>&2
33
+ echo "https://artifacts-$WORKFLOW.elastic.co/$ARTIFACT/latest/$NEW_BRANCH.json"
34
LATEST_BUILD=$(fetch_build $WORKFLOW $ARTIFACT $NEW_BRANCH)
35
fi
36
0 commit comments