Commit 6645bcf04cfe

Vincent Demeester <vincent@sbr.pm>
2026-04-16 12:20:03
flux-generate: disable GPG signing for auto-commits
1 parent abb75a4
Changed files (1)
modules
flux-generate
modules/flux-generate/default.nix
@@ -67,7 +67,7 @@ in
 
         if [ -f flux/entries.json ] && ! git diff --quiet flux/entries.json 2>/dev/null; then
           git add flux/entries.json
-          git commit -m "flux: auto-update entries $(date +%Y-%m-%d)"
+          git -c commit.gpgsign=false commit -m "flux: auto-update entries $(date +%Y-%m-%d)"
           git push origin main:main
         fi
       '';