Recipe.yml not refreshing after upgrade to bluebuild 1.8
https://github.com/mecattaf/zen/actions/runs/12261046537/job/34207135279
After upgrading to the bluebuild 1.8 i got an error becausde my chezmoi module was improperly configured.
I fixed my recipe according to the documentation (picture 1).
However despite pushing the changes to my repo, the github build action still fails with the error message showing as if the recipe did not update (Picture 2)
Maybe this is due to some caching on the bluebuild side? Or am I doing something wrong? It looks like the github action is not taking into account new changes made to recipe.yml
GitHub
bluebuild · mecattaf/zen@4a86da5
Fedora Atomic spin for Asus Zenbook Duo. Contribute to mecattaf/zen development by creating an account on GitHub.
4 Replies
bluebuild doesn't do caching, but github might
you could try a local build to confirm if caching is the issue
the error also seems to be with a recipe in the ./recipes/yum/ directory, but i can't seem to be able to open that in the file tree
maybe some weird git oddity?
One of those errors (specifically
./recipes/yum/recipe.yml
) has more properties than it should. I assume you're using from-file
to import that. We don't support using a full other recipe file when doing from-file
so I would suggest leaving only the modules
section of that file and get rid of any other top-level propertyBlueBuild
How to split configuration into multiple files
This guide shows you how to include module configuration into your recipe from an external file.
You're right. This was another issue, which I have fixed
I had accidentally duplicated the main recipe.yml into a nested recipe.yml that was inside
./recipes/yum/recipe.yml
instead of it being a very small module.
Marking this as done. Thank you for the help as always