Azure Container Apps not getting updated image tag from GitHub workflow
Krutik Shah
25
Reputation points
I'm using Azure Container Apps with a Java application and have set up a GitHub Actions workflow for deployment, using the following configuration:
uses:
with:
acrName:
acrUsername:
acrPassword:
containerAppName:
containerAppEnvironment:
resourceGroup:
imageToBuild:
dockerfilePath:
Even I tried with az containerapp update command too but still tag is not updated
The images are pushed with the latest tags, but the Azure Container App does not seem to update with the latest image. However, when I deploy the code directly through IntelliJ, the tags update correctly in the same app.
Could anyone help identify why the Azure Container App is not updating with the latest tag in this GitHub Actions setup?
Sign in to answer