ci: fix path
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
100d10675c
commit
8454fb878e
|
@ -53,7 +53,7 @@ steps:
|
||||||
from_secret: ssh-port
|
from_secret: ssh-port
|
||||||
source:
|
source:
|
||||||
- .
|
- .
|
||||||
target: "%(name)s"
|
target: /stack/guacamole
|
||||||
username:
|
username:
|
||||||
from_secret: ssh-user
|
from_secret: ssh-user
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ steps:
|
||||||
- export GUACAMOLE_POSTGRES_DB=$${GUACAMOLE_POSTGRES_DB}
|
- export GUACAMOLE_POSTGRES_DB=$${GUACAMOLE_POSTGRES_DB}
|
||||||
- export GUACAMOLE_POSTGRES_USER=$${GUACAMOLE_POSTGRES_USER}
|
- export GUACAMOLE_POSTGRES_USER=$${GUACAMOLE_POSTGRES_USER}
|
||||||
- set -e
|
- set -e
|
||||||
- cd %(name)s
|
- cd /stack/guacamole
|
||||||
- sh .drone/login.sh
|
- sh .drone/login.sh
|
||||||
- sh .drone/pull.sh
|
- sh .drone/pull.sh
|
||||||
- sh .drone/deploy.sh
|
- sh .drone/deploy.sh
|
||||||
|
|
|
@ -65,7 +65,7 @@ function(
|
||||||
name: 'print env',
|
name: 'print env',
|
||||||
},
|
},
|
||||||
images.scp(
|
images.scp(
|
||||||
'%(root)%(name)s' % { root: root, name: name }
|
'%(root)s%(name)s' % { root: root, name: name }
|
||||||
),
|
),
|
||||||
images.wait(15),
|
images.wait(15),
|
||||||
build(buildSecrets),
|
build(buildSecrets),
|
||||||
|
@ -88,7 +88,7 @@ function(
|
||||||
) +
|
) +
|
||||||
[
|
[
|
||||||
'set -e',
|
'set -e',
|
||||||
'cd %(root)%(name)s' % { root: root, name: name },
|
'cd %(root)s%(name)s' % { root: root, name: name },
|
||||||
'sh .drone/login.sh',
|
'sh .drone/login.sh',
|
||||||
'sh .drone/pull.sh',
|
'sh .drone/pull.sh',
|
||||||
'sh .drone/deploy.sh',
|
'sh .drone/deploy.sh',
|
||||||
|
|
Loading…
Reference in New Issue