Skip to content

Commit 369f3f6

Browse files
authored
CLOUDP-319840: Fixes papertrail implementation (#3901)
1 parent 414804a commit 369f3f6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build/ci/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ functions:
189189
- unstable
190190
script: |
191191
# Get unstable to determine product name
192-
if [[ "${unstable:-}" == "-unstable" ]]; then
192+
if [ "$unstable" = "-unstable" ]; then
193193
product="atlascli-snapshot"
194194
else
195195
product="atlascli"
196196
fi
197197
198-
cat <<EOT > expansions.yaml
198+
cat <<EOT > src/github.com/mongodb/mongodb-atlas-cli/expansions.yaml
199199
product: "$product"
200200
EOT
201201
- command: expansions.update
@@ -515,6 +515,8 @@ tasks:
515515
content_type: ${content_type|application/x-gzip}
516516
display_name: downloads-center-new-
517517
- func: "trace artifacts"
518+
vars:
519+
unstable: ${unstable}
518520
- func: "send slack notification"
519521
- name: push_atlascli_generate
520522
patchable: false

0 commit comments

Comments
 (0)