From ff60c7bd3d0f60ce5b39da1f54d55d6c34520283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <Joerg.Sachse@slub-dresden.de> Date: Thu, 4 Aug 2022 15:33:06 +0200 Subject: [PATCH] fix: use correct variable names in GitLab-CI config --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d072439..55bee84 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,8 +19,8 @@ test-job: - "shell" script: # make sure that Ansible Vaults are present and can be decrypted - - echo "${VAULT_INSTALL_COMMON}" > ../lza_install_common.pass - - export ANSIBLE_VAULT_PASSWORD_FILE=../lza_install_common.pass + - echo "${VAULT_INGEST}" > ../lza_ingest.pass + - export ANSIBLE_VAULT_PASSWORD_FILE=../lza_ingest.pass - rm -rf ../ansible_vaults/ - git clone https://gitlab+deploy-token-25:${VAULT_ACCESS_TOKEN}@git.slub-dresden.de/slub-referat-2-3/ansible_vaults.git ../ansible_vaults/; \ # run Molecule tests -- GitLab