diff options
author | Thomas <thomas.lenz@egiz.gv.at> | 2025-05-05 14:53:53 +0200 |
---|---|---|
committer | Thomas <thomas.lenz@egiz.gv.at> | 2025-05-05 16:18:40 +0200 |
commit | c73e9a15b272d742cfabde88faccb4d1cb78e0f0 (patch) | |
tree | bea5d3a3c9b41f95fbc1048d5cf30265330be93c | |
parent | b8da9aad3741d0e4c0d1c82164a9bb3c5834c93f (diff) | |
download | EAAF-Components-c73e9a15b272d742cfabde88faccb4d1cb78e0f0.tar.gz EAAF-Components-c73e9a15b272d742cfabde88faccb4d1cb78e0f0.tar.bz2 EAAF-Components-c73e9a15b272d742cfabde88faccb4d1cb78e0f0.zip |
build(ci): update host keys for SFTP
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f6ebe486..4c6c1aa0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -91,7 +91,10 @@ publishToGitlab: - mkdir -p ~/.ssh #- ssh-keyscan apps.egiz.gv.at >> ~/.ssh/known_hosts - echo $DEPLOY_EGIZ >> ~/.ssh/known_hosts - - chmod 644 ~/.ssh/known_hosts + - echo $DEPLOY_EGIZ_V2 >> ~/.ssh/known_hosts + - echo $DEPLOY_EGIZ_V3 >> ~/.ssh/known_hosts + - cat ~/.ssh/known_hosts + - chmod 644 ~/.ssh/known_hosts script: | export VERSION=$(mvn -B help:evaluate -Dexpression=project.version -B | grep -v "\[INFO\]" | grep -Po "\d+\.\d+\.\d+((-\w*)+)?") echo "Publishing version $VERSION for $LIB_NAME to public EGIZ maven" |