24 lines
266 B
YAML
24 lines
266 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: ssh
|
||
|
name: lcwww
|
||
|
|
||
|
server:
|
||
|
host:
|
||
|
from_secret: host110
|
||
|
user:
|
||
|
from_secret: user
|
||
|
ssh_key:
|
||
|
from_secret: ssh_key
|
||
|
|
||
|
steps:
|
||
|
- name: deploy
|
||
|
commands:
|
||
|
- /opt/scripts/confirm-test.sh
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- master
|
||
|
event:
|
||
|
- push
|