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