What is the difference between a rebuild and a redeploy?
Platform.sh DevRel
And, does the platform redeploy command also trigger a rebuild?
0
Comments
Build and Deploy are two distinct phases in the Platform.sh pipeline.
A Build can only be triggered by pushing a change in your code to Git. If your code doesn’t change, no build happens, and the read-only code file system from the previous successful Build will be used.
You can trigger a Deploy with the
platform redeployCLI command. You can think of this command as “rebooting the server”, since all the app container will be rebooted. Services will be closed for connections in that time, and re-opened when the app container is again ready.Please sign in to leave a comment.