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 8f7be85 commit 19512b0Copy full SHA for 19512b0
src/ci/scripts/run-build-from-ci.sh
@@ -16,6 +16,11 @@ echo "::add-matcher::src/ci/github-actions/problem_matchers.json"
16
# with the cargotest step and its auto-detection of things like Clippy in
17
# the environment
18
rustup self uninstall -y || true
19
+
20
+# Authenticate to the public ECR registry. See https://gallery.ecr.aws/.
21
+# The region `us-east-1` is the only allowed value by aws to authenticate to ECR.
22
+aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws
23
24
if [ -z "${IMAGE+x}" ]; then
25
src/ci/run.sh
26
else
0 commit comments