-
Notifications
You must be signed in to change notification settings - Fork 889
ci: run build step separately from deploy step #7891
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Potential scope creep: it would also be really nice if we also built and pushed a Docker image |
+1 for the |
We are doing this now for some time and publishing it as |
We now have separate build and deploy jobs. |
Problem
Currently, our
ci/deploy
step builds the project, copies the package over todev.coder.com
and installs the package in one step.#7887 occurred for the following reasons:
make build
deploy
step to fail post-merge.Proposed Solution
build
step on PR.main
branch.deploy
step contingent on thebuild
step, and modify it to use the artifacts from thebuild
step.The text was updated successfully, but these errors were encountered: