.
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
5dd9e24426
commit
1455b11a0c
|
@ -4,11 +4,12 @@ load("@this//:environment.star", "environment")
|
|||
load("@this//:export.star", "export")
|
||||
|
||||
def pull(
|
||||
name,
|
||||
images,
|
||||
):
|
||||
secrets = [ "local-docker-registry"]
|
||||
return {
|
||||
"name": "pull",
|
||||
"name": name,
|
||||
"image": "appleboy/drone-ssh",
|
||||
"environment": environment(secrets),
|
||||
"settings": {
|
||||
|
|
|
@ -32,7 +32,9 @@ def drone(
|
|||
[
|
||||
wait(15, "wait"),
|
||||
build("drone-starlark"),
|
||||
pull([
|
||||
pull(
|
||||
"pull drone",
|
||||
[
|
||||
"drone-starlark",
|
||||
]),
|
||||
rescale(
|
||||
|
@ -64,13 +66,16 @@ def drone(
|
|||
# "drone",
|
||||
#),
|
||||
scp(base),
|
||||
pull([
|
||||
"ghost",
|
||||
"ngrok-gitea",
|
||||
"letsencrypt-git",
|
||||
"letsencrypt-drone",
|
||||
"guacamole-postgresql",
|
||||
]),
|
||||
pull(
|
||||
"pull images",
|
||||
[
|
||||
"ghost",
|
||||
"ngrok-gitea",
|
||||
"letsencrypt-git",
|
||||
"letsencrypt-drone",
|
||||
"guacamole-postgresql",
|
||||
],
|
||||
),
|
||||
deploy(
|
||||
"docker-compose-home.yml",
|
||||
name,
|
||||
|
|
Reference in New Issue