10
10
11
11
steps :
12
12
- input : " Build parameters"
13
- if : build.env("ManifestURL ") == null
13
+ if : build.env("MANIFEST_URL ") == null
14
14
fields :
15
- - text : " ManifestURL "
16
- key : " ManifestURL "
15
+ - text : " MANIFEST_URL "
16
+ key : " MANIFEST_URL "
17
17
default : " "
18
18
required : true
19
19
hint : " Link to the build manifest URL."
51
51
hint : " If the DRA release manager script would actually publish anything or just print"
52
52
53
53
- wait : ~
54
- if : build.env("ManifestURL ") == null
54
+ if : build.env("MANIFEST_URL ") == null
55
55
56
56
- group : " :Packaging Artefacts"
57
57
key : " package"
@@ -63,10 +63,10 @@ steps:
63
63
machineType : " c2-standard-16"
64
64
diskSizeGb : 400
65
65
command : |
66
- if [[ -z "${ManifestURL }" ]]; then
67
- export ManifestURL =$(buildkite-agent meta-data get ManifestURL --default "")
68
- if [[ -z "${ManifestURL }" ]]; then
69
- echo ":broken_heart: Missing ManifestURL variable or empty string provided"
66
+ if [[ -z "${MANIFEST_URL }" ]]; then
67
+ export MANIFEST_URL =$(buildkite-agent meta-data get MANIFEST_URL --default "")
68
+ if [[ -z "${MANIFEST_URL }" ]]; then
69
+ echo ":broken_heart: Missing MANIFEST_URL variable or empty string provided"
70
70
exit 1
71
71
fi
72
72
fi
@@ -86,10 +86,10 @@ steps:
86
86
PLATFORMS : " linux/arm64"
87
87
PACKAGES : " docker"
88
88
command : |
89
- if [[ -z "${ManifestURL }" ]]; then
90
- export ManifestURL =$(buildkite-agent meta-data get ManifestURL --default "")
91
- if [[ -z "${ManifestURL }" ]]; then
92
- echo ":broken_heart: Missing ManifestURL variable or empty string provided"
89
+ if [[ -z "${MANIFEST_URL }" ]]; then
90
+ export MANIFEST_URL =$(buildkite-agent meta-data get MANIFEST_URL --default "")
91
+ if [[ -z "${MANIFEST_URL }" ]]; then
92
+ echo ":broken_heart: Missing MANIFEST_URL variable or empty string provided"
93
93
exit 1
94
94
fi
95
95
fi
0 commit comments