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

This commit is contained in:
Giles Bradshaw 2020-04-25 21:59:14 +01:00
parent b83c01b64e
commit 41e327d728
1 changed files with 27 additions and 0 deletions

View File

@ -92,6 +92,31 @@ def buildNginx(name):
],
}
def scp(target):
return {
"name": "scp files",
"image": "appleboy/drone-scp",
"settings": {
"host": {
"from_secret": "ssh-host",
},
"username": {
"from_secret": "ssh-user",
},
"password": {
"from_secret": "ssh-password",
},
"port": {
"from_secret": "ssh-port",
},
},
"command_timeout": "2m",
"target": target,
"source": [
".",
],
}
def steps(name, dependsOn):
return {
"kind": "pipeline",
@ -113,6 +138,8 @@ def steps(name, dependsOn):
buildNginx("drone"),
buildNginx("git"),
buildNginx("remote"),
buildNginx("chat"),
scp("~/gitea-drone-stack"),
{
"name": "build",
"image": "alpine",