2024-05-07 15:57:54 +00:00
|
|
|
#!/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
|
2024-08-13 04:53:07 +00:00
|
|
|
<pre class="term">sg cloud eph deploy --version "$VERSION"</pre>
|
2024-05-07 15:57:54 +00:00
|
|
|
Or you can upgrade an existing Cloud Ephemeral deployment by running
|
2024-08-13 04:53:07 +00:00
|
|
|
<pre class="term">sg cloud eph upgrade --version "$VERSION"</pre>
|
2024-05-07 15:57:54 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ml-auto">
|
|
|
|
|
:gcp: Cloud Ephemeral
|
|
|
|
|
</div>
|
|
|
|
|
EOF
|