|
kind: pipeline
|
|
type: ssh
|
|
name: default
|
|
server:
|
|
host:
|
|
from_secret: host
|
|
port:
|
|
from_secret: port
|
|
user:
|
|
from_secret: username
|
|
password:
|
|
from_secret: password
|
|
steps:
|
|
- name: build
|
|
commands:
|
|
- cd /home/martabak/web
|
|
- git fetch
|
|
- git checkout prod
|
|
- git pull |