diff options
author | Julien Dessaux | 2024-09-09 23:15:11 +0200 |
---|---|---|
committer | Julien Dessaux | 2024-09-11 00:20:54 +0200 |
commit | 8490464f32983f6302e757769a7018c83e1a33c3 (patch) | |
tree | 3ce919045f92faa4272e6ef31c4b40364507fb20 /ods | |
parent | Fix image building errors when podman is running pods (diff) | |
download | ev-scripts-8490464f32983f6302e757769a7018c83e1a33c3.tar.gz ev-scripts-8490464f32983f6302e757769a7018c83e1a33c3.tar.bz2 ev-scripts-8490464f32983f6302e757769a7018c83e1a33c3.zip |
Added ods deploy job
Diffstat (limited to 'ods')
-rw-r--r-- | ods/ods-deploy.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ods/ods-deploy.yaml b/ods/ods-deploy.yaml new file mode 100644 index 0000000..f77b50c --- /dev/null +++ b/ods/ods-deploy.yaml @@ -0,0 +1,21 @@ +name: "ods-deploy" +steps: + - label: git clone + script: + path: "../common/git-clone.sh" + arguments: + - "https://git.adyxax.org/adyxax/ods" + - 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" |