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 414804a commit 369f3f6Copy full SHA for 369f3f6
build/ci/release.yml
@@ -189,13 +189,13 @@ functions:
189
- unstable
190
script: |
191
# Get unstable to determine product name
192
- if [[ "${unstable:-}" == "-unstable" ]]; then
+ if [ "$unstable" = "-unstable" ]; then
193
product="atlascli-snapshot"
194
else
195
product="atlascli"
196
fi
197
198
- cat <<EOT > expansions.yaml
+ cat <<EOT > src/github.com/mongodb/mongodb-atlas-cli/expansions.yaml
199
product: "$product"
200
EOT
201
- command: expansions.update
@@ -515,6 +515,8 @@ tasks:
515
content_type: ${content_type|application/x-gzip}
516
display_name: downloads-center-new-
517
- func: "trace artifacts"
518
+ vars:
519
+ unstable: ${unstable}
520
- func: "send slack notification"
521
- name: push_atlascli_generate
522
patchable: false
0 commit comments