What kind of change does this Pull Request introduce?
Updates a single line in deploy/main.bicep. Currently the GitHub tutorial at https://learn.microsoft.com/en-us/azure/container-apps/dapr-github-actions?tabs=bash uses this repo to demonstrate GitHub Actions and Azure Container Apps. However, the deploy/main.bicep marks the GitHub registry for the package as true but it looks like that should be false.
This PR changes isPrivateRegistry to false in deploy/main.bicep.
[ X] Bugfix
[ ] Feature
[ ] Code style update (formatting, local variables)
[ ] Refactoring (no functional changes, no api changes)
[ ] Documentation content changes
[ ] Other... Please describe:
Purpose
Does this introduce a breaking change?
Pull Request Type
What kind of change does this Pull Request introduce?
Updates a single line in
deploy/main.bicep
. Currently the GitHub tutorial at https://learn.microsoft.com/en-us/azure/container-apps/dapr-github-actions?tabs=bash uses this repo to demonstrate GitHub Actions and Azure Container Apps. However, thedeploy/main.bicep
marks the GitHub registry for the package astrue
but it looks like that should befalse
.This PR changes
isPrivateRegistry
tofalse
indeploy/main.bicep
.How to Test
main.bicep
as mentioned above). The container app revision that is created should now be able to pull the image needed and load successfully in the browser.What to Check