14 lines
245 B
Plaintext
14 lines
245 B
Plaintext
|
|
||
|
load("@this//ghost:drone.star", "drone")
|
||
|
load("@this//ghost:stack-name.star", "stackName")
|
||
|
load("@this//ghost:stack-root.star", "stackRoot")
|
||
|
|
||
|
def main(ctx):
|
||
|
return drone(
|
||
|
ctx,
|
||
|
"home-deploy",
|
||
|
stackRoot,
|
||
|
stackName,
|
||
|
[]
|
||
|
)
|
||
|
|