diff options
Diffstat (limited to 'ods')
-rw-r--r-- | ods/ods-deploy.yaml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/ods/ods-deploy.yaml b/ods/ods-deploy.yaml index 4602111..5e96344 100644 --- a/ods/ods-deploy.yaml +++ b/ods/ods-deploy.yaml @@ -1,15 +1,20 @@ name: "ods-deploy" steps: - - label: git clone + - label: "git clone" script: path: "../common/git-clone.sh" arguments: - "https://git.adyxax.org/adyxax/ods" - - label: make deploy + - label: "build" + script: + path: "../common/make.sh" + arguments: + - "container-build" + - label: "deploy" script: path: "../common/make.sh" arguments: - "deploy" - - label: clean + - label: "clean" script: path: "../common/clean.sh" |