mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-30 09:46:35 +00:00
11 lines
259 B
TypeScript
Executable File
11 lines
259 B
TypeScript
Executable File
#!/usr/bin/env bun
|
|
|
|
import { sign } from "../../../script/signpath.ts"
|
|
|
|
for (const artifactId of process.env.INPUT_ARTIFACTS!.split("\n")) {
|
|
await sign({
|
|
outputDirectory: process.env.OUTPUT_ARTIFACT_DIRECTORY!,
|
|
artifactId: artifactId.trim(),
|
|
})
|
|
}
|