Fix repo slug

This commit is contained in:
Colin McDonnell
2026-01-14 01:44:30 +00:00
committed by pullfrog[bot]
parent 5604cf1868
commit 3fa309853b
16 changed files with 278033 additions and 58 deletions
+16
View File
@@ -75,4 +75,20 @@ await build({
plugins: [stripShebangPlugin],
});
// Build the run sub-action
await build({
...sharedConfig,
entryPoints: ["./run/entry.ts"],
outfile: "./run/entry",
plugins: [stripShebangPlugin],
});
// Build the dispatch sub-action
await build({
...sharedConfig,
entryPoints: ["./dispatch/entry.ts"],
outfile: "./dispatch/entry",
plugins: [stripShebangPlugin],
});
console.log("✅ Build completed successfully!");