diff options
author | Julien Dessaux | 2022-09-06 19:55:22 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-09-06 19:59:31 +0200 |
commit | 79b46e27d6dd054aac8c281ac6897a65d9549f9e (patch) | |
tree | ffffada84e187b921f7d518060893e76110e5472 /eventline | |
parent | Factorised ev-scripts-deploy in a generic git clone && make run (diff) | |
download | ev-scripts-79b46e27d6dd054aac8c281ac6897a65d9549f9e.tar.gz ev-scripts-79b46e27d6dd054aac8c281ac6897a65d9549f9e.tar.bz2 ev-scripts-79b46e27d6dd054aac8c281ac6897a65d9549f9e.zip |
Split the deploy script in distinct tasks
Diffstat (limited to '')
-rw-r--r-- | eventline/ev-scripts-deploy.yaml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/eventline/ev-scripts-deploy.yaml b/eventline/ev-scripts-deploy.yaml index e01c567..21fb320 100644 --- a/eventline/ev-scripts-deploy.yaml +++ b/eventline/ev-scripts-deploy.yaml @@ -1,7 +1,14 @@ name: "ev-scripts-deploy" steps: - - script: - path: "../common/make-run.sh" + - label: git clone + script: + path: "../common/git-clone.sh" + - label: make run + script: + path: "../common/make.sh" + - label: clean + script: + path: "../common/clean.sh" identities: - eventline-self parameters: @@ -9,6 +16,10 @@ parameters: type: string default: "ev-scripts-deploy" environment: NAME +- name: target + type: string + default: "run" + environment: TARGET - name: url type: string default: "https://git.adyxax.org/adyxax/ev-scripts" |