Capital letters are not allowed, when deploying container to azure, #455
Unanswered
LuisDavidRodriguez
asked this question in
Deploy to Azure
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The workflows that build and deploy the container to azure are using the github.repository variable as part of the naming for the image.
In my case, my repository name includes Capital Letters LuisDavidRodriguez/
This happens to be detrimental to a successful deployment. I went to Azure logs, realizing it was complaining about the image name using Capital letters.
To solve this issue, I looked for an action that could be able to perform toLowerCase, because any expression could achieve that.
So I included that action as a step before, fed it with github.repository and then used the output in the next step building the name of the image correctly.
Maybe this could be included as a NOTE in the readme step when deploying to stage 🚀 🚀 🚀
Overall amazing Course!!!!!!
Beta Was this translation helpful? Give feedback.
All reactions