diff options
Diffstat (limited to '')
-rw-r--r-- | grenade-brothers/deploy.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/grenade-brothers/deploy.yaml b/grenade-brothers/deploy.yaml new file mode 100644 index 0000000..8a5c62d --- /dev/null +++ b/grenade-brothers/deploy.yaml @@ -0,0 +1,21 @@ +name: "grenade-brothers-deploy" +steps: + - label: git clone + script: + path: "../common/git-clone.sh" + arguments: + - "https://git.adyxax.org/adyxax/grenade-brothers" + - label: make deploy + script: + path: "../common/make.sh" + arguments: + - "deploy" + - label: clean + script: + path: "../common/clean.sh" +runner: + identity: "ssh-myth" + name: "ssh" + parameters: + host: "myth.adyxax.org" + user: "root" |