From 0f65475b8439f11a27cd7a52dc8d07be00b90fe4 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Fri, 30 Sep 2022 17:33:21 +0200 Subject: [PATCH] [ci] Add job to update windows deps #4 --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 298fab0..0bd97a6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,7 +18,6 @@ workflow: stages: - prepare - - deps - build - deploy - release @@ -42,7 +41,7 @@ prepare: dotenv: build.env update_windows_deps: - stage: deps + stage: prepare tags: - shared-windows - windows @@ -57,6 +56,7 @@ update_windows_deps: # - Pipfile.lock # when: always before_script: + - cat "${WINDOWS_FILE_TEST}" - Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" - choco install python --version=$PYTHON_VERSION -y --no-progress - choco install openssh -y --no-progress @@ -65,7 +65,7 @@ update_windows_deps: - pip install pipenv - Get-Service -Name ssh-agent | Set-Service -StartupType Manual - ssh-agent - - ssh-add "${WINDOWS_SSH_PRIVATE_KEY}" + - cat "${WINDOWS_SSH_PRIVATE_KEY}" | ssh-add - - git config --global user.name "Gitlab CI" - git config --global user.email "ci@gitlab.com" script: