Procházet zdrojové kódy

fix: don't sign snapshot commits (#1046)

Robin Moser před 7 měsíci
rodič
revize
f45deb37f0
1 změnil soubory, kde provedl 5 přidání a 4 odebrání
  1. 5 4
      packages/opencode/src/snapshot/index.ts

+ 5 - 4
packages/opencode/src/snapshot/index.ts

@@ -38,10 +38,11 @@ export namespace Snapshot {
     await $`git --git-dir ${git} add .`.quiet().cwd(app.path.cwd).nothrow()
     log.info("added files")
 
-    const result = await $`git --git-dir ${git} commit -m "snapshot" --author="opencode <[email protected]>"`
-      .quiet()
-      .cwd(app.path.cwd)
-      .nothrow()
+    const result =
+      await $`git --git-dir ${git} commit -m "snapshot" --no-gpg-sign --author="opencode <[email protected]>"`
+        .quiet()
+        .cwd(app.path.cwd)
+        .nothrow()
 
     const match = result.stdout.toString().match(/\[.+ ([a-f0-9]+)\]/)
     if (!match) return