.
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")
|
||||
|
||||
def echo(secret):
|
||||
return 'echo "eeexport {environment}=${environment}" >> ***filename*** # {secret}'.format(
|
||||
return 'echo "export {environment}=${environment}" >> ***filename*** # {secret}'.format(
|
||||
secret = secret,
|
||||
environment = secretToEnvironment(secret),
|
||||
)
|
||||
|
|
|
@ -32,15 +32,6 @@ def drone(
|
|||
[
|
||||
wait(15, "wait"),
|
||||
build("drone-starlark"),
|
||||
pull(
|
||||
"pull drone",
|
||||
[
|
||||
"drone-starlark",
|
||||
]),
|
||||
rescale(
|
||||
"{name}_drone-starlark".format(name=name),
|
||||
1,
|
||||
),
|
||||
printSecrets(
|
||||
"env-stack",
|
||||
publicSecrets,
|
||||
|
@ -69,6 +60,8 @@ def drone(
|
|||
pull(
|
||||
"pull images",
|
||||
[
|
||||
"drone-starlark",
|
||||
"gitea",
|
||||
"ghost",
|
||||
"ngrok-gitea",
|
||||
"letsencrypt-git",
|
||||
|
|
|
@ -2,7 +2,7 @@ envsubst < /init/app.ini > /data/gitea/conf/app.ini
|
|||
|
||||
for file in /init/templates
|
||||
do
|
||||
envsubst < "/init/templates/$file" > "/data/gitea/templates/$file"
|
||||
envsubst < "$file" > "/data/gitea/templates/$(basename '$file')"
|
||||
done
|
||||
|
||||
/bin/s6-svscan /etc/s6
|
||||
|
|
Reference in New Issue