blob: b763e549a288b1ded565a916ef5ec18f0c629f3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
name: "www-build"
steps:
- label: buildah login
script:
path: "../common/buildah-login.sh"
- label: git clone
script:
path: "../common/git-clone.sh"
arguments:
- "https://git.adyxax.org/adyxax/www"
- label: build images
script:
path: "build-images.sh"
- label: make push
script:
path: "../common/make.sh"
arguments:
- "push"
- label: clean
script:
path: "../common/clean.sh"
identities:
- quay-io
runner:
identity: "ssh-myth"
name: "ssh"
parameters:
host: "myth.adyxax.org"
user: "root"
|