We are using this orb to deploy our FastAPI to Container Registry.
The pipeline stops working at this step:
#!/bin/bash -eo pipefail
# Run ACR Docker Credential Helper installation script
# https://github.com/Azure/acr-docker-credential-helper#installation
curl -L https://aka.ms/acr/installaad/bash | /bin/bash
The direct cause is the bash script that this URL points to https://aka.ms/acr/installaad/bash
has become inaccessible.
Has anybody seen a similar problem? Or what might be a possible work around?
Thanks in advance!