Release Auth Tools v0.3.1

This commit is contained in:
2026-09-01 15:39:32 +02:00
parent 6afa59d18f
commit 12696657a0
13 changed files with 31 additions and 13 deletions
+5 -1
View File
@@ -126,7 +126,11 @@ try {
stagedArchive,
...sourceFiles.map((file) => file.relative),
],
{ cwd: stagedTree, maxBuffer: 1024 * 1024 },
{
cwd: stagedTree,
env: { ...process.env, TZ: "UTC" },
maxBuffer: 1024 * 1024,
},
);
const archive = await readFile(stagedArchive);
const digest = createHash("sha256").update(archive).digest("hex");