2023-08-19 20:25:29 +02:00
|
|
|
kind: pipeline
|
2023-08-19 20:45:06 +02:00
|
|
|
type: docker
|
|
|
|
name: deploy
|
2023-08-19 20:25:29 +02:00
|
|
|
|
|
|
|
steps:
|
2023-08-19 21:58:38 +02:00
|
|
|
- name: deploy
|
|
|
|
image: ubuntu:22.04
|
2023-08-19 20:25:29 +02:00
|
|
|
environment:
|
2023-08-19 20:37:37 +02:00
|
|
|
HOST:
|
|
|
|
from_secret: host
|
|
|
|
USER:
|
|
|
|
from_secret: user
|
|
|
|
SSH_KEY:
|
|
|
|
from_secret: ssh_key
|
|
|
|
PATH:
|
|
|
|
from_secret: path
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
commands:
|
2023-08-19 22:05:13 +02:00
|
|
|
- cat /etc/os-release
|