blob: c9836793f19229057b58363e4ef77f6a18951f66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: alpine
commands:
- apk add git nodejs
- sh compile.sh
- apk add rsync openssh
- sh deploy.sh
environment:
RSYNC_DESTINATION:
from_secret: RSYNC_DESTINATION
SSH_KEY:
from_secret: SSH_KEY
trigger:
branch:
- main
|