diff options
author | Julien Dessaux | 2024-09-20 23:14:07 +0200 |
---|---|---|
committer | Julien Dessaux | 2024-09-20 23:15:59 +0200 |
commit | 576558adcf00dbf40ed599b9cb11b720bef47b78 (patch) | |
tree | 3a24f29c7dcbd80868c183cb3c1e5b18a14af29b /ods/ods-deploy.yaml | |
parent | Updated ods deploy job (diff) | |
download | ev-scripts-576558adcf00dbf40ed599b9cb11b720bef47b78.tar.gz ev-scripts-576558adcf00dbf40ed599b9cb11b720bef47b78.tar.bz2 ev-scripts-576558adcf00dbf40ed599b9cb11b720bef47b78.zip |
Reworked ODS job to handle the necessary git-crypt unlock
Diffstat (limited to '')
-rw-r--r-- | ods/ods.yaml (renamed from ods/ods-deploy.yaml) | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/ods/ods-deploy.yaml b/ods/ods.yaml index 5e96344..5ed5ca8 100644 --- a/ods/ods-deploy.yaml +++ b/ods/ods.yaml @@ -1,20 +1,22 @@ -name: "ods-deploy" +identities: + - "gpg" + - "ssh" +name: "ods" steps: - label: "git clone" script: path: "../common/git-clone.sh" arguments: - "https://git.adyxax.org/adyxax/ods" - - label: "build" + - label: "build and deploy" script: - path: "../common/make.sh" - arguments: - - "container-build" - - label: "deploy" - script: - path: "../common/make.sh" - arguments: - - "deploy" + path: "./ods.sh" - label: "clean" script: path: "../common/clean.sh" +runner: + identity: "ssh" + name: "ssh" + parameters: + host: "lore.adyxax.org" + user: "root" |