Replies: 1 comment 1 reply
-
Hello @adlrwbr. The first buildspec is for service CICD whereas the second buildspec is for environment CICD...As a result, the second pipeline won't update your services. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been following guides to setup a continuous deployment pipeline for my API service. My first pipeline test was using a dummy "Hello, world" server, and it generated the first buildspec.yml below. This deployed as expected.
My second
pipeline init
in a different application generated a much shorter buildspec.yml, which does not build the latest image. It took me much longer than it should have to realize the buildspec files were different because the docs seem to imply thatdocker build
will run by default.Why are these buildspecs different? Why doesn't the latter deploy by default?
Buildspec 1 - test app
Buildspec 2 - real app
Beta Was this translation helpful? Give feedback.
All reactions