.
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
0ac2a25b88
commit
ee271c4dfe
|
@ -1,7 +1,7 @@
|
||||||
load("@this//:secret-to-environment.star", "secretToEnvironment")
|
load("@this//:secret-to-environment.star", "secretToEnvironment")
|
||||||
|
|
||||||
def echo(secret):
|
def echo(secret):
|
||||||
return 'echo "eeexport {environment}=${environment}" >> ***filename*** # {secret}'.format(
|
return 'echo "export {environment}=${environment}" >> ***filename*** # {secret}'.format(
|
||||||
secret = secret,
|
secret = secret,
|
||||||
environment = secretToEnvironment(secret),
|
environment = secretToEnvironment(secret),
|
||||||
)
|
)
|
||||||
|
|
|
@ -32,15 +32,6 @@ def drone(
|
||||||
[
|
[
|
||||||
wait(15, "wait"),
|
wait(15, "wait"),
|
||||||
build("drone-starlark"),
|
build("drone-starlark"),
|
||||||
pull(
|
|
||||||
"pull drone",
|
|
||||||
[
|
|
||||||
"drone-starlark",
|
|
||||||
]),
|
|
||||||
rescale(
|
|
||||||
"{name}_drone-starlark".format(name=name),
|
|
||||||
1,
|
|
||||||
),
|
|
||||||
printSecrets(
|
printSecrets(
|
||||||
"env-stack",
|
"env-stack",
|
||||||
publicSecrets,
|
publicSecrets,
|
||||||
|
@ -69,6 +60,8 @@ def drone(
|
||||||
pull(
|
pull(
|
||||||
"pull images",
|
"pull images",
|
||||||
[
|
[
|
||||||
|
"drone-starlark",
|
||||||
|
"gitea",
|
||||||
"ghost",
|
"ghost",
|
||||||
"ngrok-gitea",
|
"ngrok-gitea",
|
||||||
"letsencrypt-git",
|
"letsencrypt-git",
|
||||||
|
|
|
@ -2,7 +2,7 @@ envsubst < /init/app.ini > /data/gitea/conf/app.ini
|
||||||
|
|
||||||
for file in /init/templates
|
for file in /init/templates
|
||||||
do
|
do
|
||||||
envsubst < "/init/templates/$file" > "/data/gitea/templates/$file"
|
envsubst < "$file" > "/data/gitea/templates/$(basename '$file')"
|
||||||
done
|
done
|
||||||
|
|
||||||
/bin/s6-svscan /etc/s6
|
/bin/s6-svscan /etc/s6
|
||||||
|
|
Reference in New Issue