diff options
author | Julien Dessaux | 2022-09-07 23:50:20 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-09-07 23:50:20 +0200 |
commit | 22b1d1c1a4cfab3a43ac3dde1671382db7b2e500 (patch) | |
tree | 5e142c74f8c7b0320014a4080ac740b96becca4b /eventline | |
parent | Split the deploy script in distinct tasks (diff) | |
download | ev-scripts-22b1d1c1a4cfab3a43ac3dde1671382db7b2e500.tar.gz ev-scripts-22b1d1c1a4cfab3a43ac3dde1671382db7b2e500.tar.bz2 ev-scripts-22b1d1c1a4cfab3a43ac3dde1671382db7b2e500.zip |
Moved away from job parameters to command arguments
Diffstat (limited to 'eventline')
-rw-r--r-- | eventline/ev-scripts-deploy.yaml | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/eventline/ev-scripts-deploy.yaml b/eventline/ev-scripts-deploy.yaml index 21fb320..2471747 100644 --- a/eventline/ev-scripts-deploy.yaml +++ b/eventline/ev-scripts-deploy.yaml @@ -3,24 +3,19 @@ steps: - label: git clone script: path: "../common/git-clone.sh" + arguments: + - "ev-scripts-deploy" + - "https://git.adyxax.org/adyxax/ev-scripts" - label: make run script: path: "../common/make.sh" + arguments: + - "ev-scripts-deploy" + - "run" - label: clean script: path: "../common/clean.sh" + arguments: + - "ev-scripts-deploy" identities: - eventline-self -parameters: -- name: name - 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" - environment: URL |