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.
2 parents 672a267 + fd4c543 commit b9d66bbCopy full SHA for b9d66bb
.buildkite/steps/publish.sh
@@ -5,8 +5,8 @@ is_latest_tag() {
5
[[ "$BUILDKITE_TAG" = $(git describe --abbrev=0 --tags --match 'v*') ]]
6
}
7
8
-is_release_candidate_tag() {
9
- [[ "$BUILDKITE_TAG" =~ -rc ]]
+is_prerelease_tag() {
+ [[ "$BUILDKITE_TAG" =~ - ]]
10
11
12
s3_upload_templates() {
@@ -33,7 +33,7 @@ make build/aws-stack.yml
33
34
# Publish the top-level mappings only on when we see the most recent tag on master
35
if is_latest_tag ; then
36
- if ! is_release_candidate_tag ; then
+ if ! is_prerelease_tag ; then
37
s3_upload_templates "latest/"
38
fi
39
s3_upload_templates
0 commit comments