.
continuous-integration/drone/push Build is passing Detalles

This commit is contained in:
Giles Bradshaw 2020-04-26 13:32:28 +01:00
padre 88133b0e82
commit ecbc7195e3
Se han modificado 2 ficheros con 7 adiciones y 5 borrados

Ver fichero

@ -0,0 +1,5 @@
load("@this//:from-secret.star", "fromSecret")
def environment(env):
return dict(
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
)

Ver fichero

@ -1,10 +1,7 @@
load("@this//:map.star", "map")
load("@this//:from-secret.star", "fromSecret")
def environment(env):
return dict(
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
)
load("@this//:environment", "environment")
def secretToEnvironment(secret):
return secret.replace("-", "_").upper()