BlueBuildB
BlueBuild13mo ago
tn

Fonts module no longer working

I recently updated the BlueBuild action version in my repository and fonts are no longer being installed by the fonts module.

Module config:
- type: fonts # install JetBrainsMono NF
  fonts:
    nerd-fonts:
      - JetBrainsMono

Previous build log (fonts were present on built image):
/tmp/modules/fonts/fonts.sh '{"type":"fonts","fonts":{"nerd-fonts":["JetBrainsMono"]}}'   && echo "========== End Fonts module =========="   && ostree container commit
0.078 ========== Start Fonts module ==========
0.101 Installation of nerd-fonts started
0.104 Downloading JetBrainsMono from https://github.com/ryanoasis/nerd-fonts/releases/latest/download/JetBrainsMono.tar.xz
0.279 Downloaded JetBrainsMono
2.132 ========== End Fonts module ==========
DONE 2.5s

New build log (fonts are no longer present on built image):
/tmp/scripts/run_module.sh 'fonts' '{"type":"fonts","fonts":{"nerd-fonts":["JetBrainsMono"]}}'   && ostree container commit
============================= Start 'fonts' Module =============================
0.090 Installation of google-fonts started
0.263 Installation of nerd-fonts started
0.284 ============================== End 'fonts' Module ==============================
DONE 0.3s

full build log: https://github.com/trevnels/adwaitium/actions/runs/12145453988/job/33867126625#step:2:3903

Any idea as to why fonts are no longer being downloaded? I did see there was a recent change to the fonts module involving jq/yq. Could this be a regression related to that?
Was this page helpful?