default-flatpaks v2 migration issue
I updated my default-flatpaks config to use the new module, but my builds fail.
Does anyone have a minute to take a look at tell me what I'm missing please?
GitHub
feat: transition to the new default-flatpaks module and a new set o...
The Fedora Workstation for economic research; built on Fedora Silverblue and Universal Blue. - feat: transition to the new default-flatpaks module and a new set of … · ptinopedila/ptinopedila@2d8414a
Solution:Jump to solution
First key under "configurations:" needs "-", as its an array, you're missing that since you commented out the notify line
8 Replies
try to add this
at the very beginning of your main recipe file

The properties name, description, base-image, image-version, and modules are all defined in the file that this yaml file is imported from
https://github.com/ptinopedila/ptinopedila/blob/main/recipes/ptinopedila-home-nvidia.yml
try to remove the
#
before notify
. could be an error due to to a missing -
or add a
-
before scope
. this validates
and FYI
is ideally placed in the main image recipe files so
recipes/ptinopedila-*.yml
in your caseSolution
First key under "configurations:" needs "-", as its an array, you're missing that since you commented out the notify line
Thank you. That was it