Editing release runner

This commit is contained in:
2025-01-11 20:49:32 +08:00
parent 7919a854df
commit 2e951a084e
5 changed files with 117 additions and 5 deletions

View File

@ -8,7 +8,7 @@
"name": "LittleSheep",
"email": "littlesheep.code@hotmail.com"
},
"version": "0.1.2",
"version": "0.1.3",
"tsup": {
"entry": [
"src/index.ts"

View File

@ -8,6 +8,7 @@ export interface MaRelease {
channel: string
assets: Record<string, MaReleaseAsset>
installers: Record<string, MaReleaseInstaller>
runners: Record<string, MaReleaseRunner>
product_id: number
meta: MaReleaseMeta
}
@ -39,3 +40,9 @@ export interface MaReleaseInstaller {
script?: string
patches: MaReleaseInstallerPatch[]
}
export interface MaReleaseRunner {
workdir?: string
script: string
label: string
}