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

This commit is contained in:
Giles Bradshaw 2020-04-24 14:30:51 +01:00
parent 5f2bbeb315
commit 06c958b4c2
1 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,10 @@ def environment(env):
)
def printSecrets(env):
envv = map(env, lambda: x: x)
def myfunc(x):
return x
envv = map(env, myfunc)
return {
"name": "print secrets",
"image": "appleboy/drone-ssh",