blue-build / cli

BlueBuild's command line program that builds custom Fedora Atomic images based on your recipe.yml
https://blue-build.org/
Apache License 2.0
71 stars 8 forks source link

fix: Tag builds not running #144

Closed gmpinder closed 5 months ago

gmpinder commented 6 months ago

For some reason tag builds weren't being started when I made the most recent release. Might have something to do with the fact that cargo-release created multiple tags for the various crates in the workspace.

 * [new tag]         blue-build-recipe-v0.8.3   -> blue-build-recipe-v0.8.3
 * [new tag]         blue-build-template-v0.8.3 -> blue-build-template-v0.8.3
 * [new tag]         blue-build-utils-v0.8.3    -> blue-build-utils-v0.8.3
 * [new tag]         v0.8.3                     -> v0.8.3

I'll have to look into what we can do to either the release process or the tag.yml that is responsible for running the workflow.

gmpinder commented 5 months ago

I ended up coding up a solution in the justfile to manage releases and push only one tag. Latest tag seems to be building properly.