Replies: 1 comment
-
Hi @wmeints To deploy a previously packaged service, you have to use flags for both When running Then, when running You can combine this with gh-actions steps to upload artifacts and download it from another gh-action stage. Adding @wbreza |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I'm setting up a CI/CD pipeline in Github Actions where I have a build job, a deployment job for test, and a deployment job for production. I tried setting up so that:
azd package
in the build job to build and push docker images of my applicationazd provision
andazd deploy
in the deployment job to provision and deploy the applicationI can't seem to get it to work properly. I can succesfully package the application and push the images to the docker container registry. But in the deploy job it won't deploy the images I made earlier.
I'm looking for some pointers to get me going :-)
Beta Was this translation helpful? Give feedback.
All reactions