blob: d601a83370057a5df672ba938a5819a747654f1d (
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 npm go
- 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
|