sourcegraph/dev/ci/annotate-cloud-ephemeral.sh
Michael Lin 20f22d29f0
sg/cloud: fix eph cmd typo (#64427)
fixed typo. these commands are under `sg cloud eph`

## Test plan

CI
2024-08-13 06:53:07 +02:00

21 lines
660 B
Bash
Executable File

#!/usr/bin/env bash
VERSION=$1
cat <<EOF | buildkite-agent annotate --style=info --context=cloud-ephemeral
<div class="flex">
<div>
Images in this build will be pushed to the Cloud Ephemeral registry with the following tag/version
<pre class="term">$VERSION</pre>
<div>
You can deploy this version to a Cloud Ephemeral envirionment by running
<pre class="term">sg cloud eph deploy --version "$VERSION"</pre>
Or you can upgrade an existing Cloud Ephemeral deployment by running
<pre class="term">sg cloud eph upgrade --version "$VERSION"</pre>
</div>
</div>
<div class="ml-auto">
:gcp: Cloud Ephemeral
</div>
EOF