-
Notifications
You must be signed in to change notification settings - Fork 36
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
Don't push the spaceros image every time we submit a PR #79
Comments
@mkhansenbot are the names of jobs still up to date? I can't find them. I can only see |
Sorry, I just re-looked at this, I named them wrong in the initial issue, you have the names correct. The point is still the same, we have one workflow that does both, which means we can't run them separately, which we really should be doing. We don't want to push an image every time there's a PR to this repo. We need to split the action into two. |
In other repos I've used the branch name to determine whether a push should happen. If the branch is called |
Added to next milestone (proposed) humble-2024.04.0 |
Fixed by #133 |
We currently have one workflow with jobs for Earthly
build-and-test
and Earthlybuild-and-push
. This means we have to run both together to run abuild-and-test
. This means we're pushing containers that aren't based on themain
branch. I think we should split these into separate workflows. Thebuild-and-test
workflow should run on every PR, every merge to main, and nightly. The build-and-push should only run once or twice a day. In fact, I thinkbuild-and-push
should bebuild-test-push
The text was updated successfully, but these errors were encountered: