diff options
Diffstat (limited to '')
-rw-r--r-- | grenade-brothers/build.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/grenade-brothers/build.yaml b/grenade-brothers/build.yaml new file mode 100644 index 0000000..37ee8c3 --- /dev/null +++ b/grenade-brothers/build.yaml @@ -0,0 +1,29 @@ +name: "grenade-brothers-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/grenade-brothers" + - label: build image + script: + path: "build-image.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" |