From 0859929cbdd25c39e1ba00e36f83a34d18fa583c Mon Sep 17 00:00:00 2001 From: "J. Secula" Date: Thu, 5 Jun 2025 09:58:35 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6e66823..502198e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,8 +31,8 @@ build-job: # This job runs in the build stage, which runs first. - wget -q https://packages.microsoft.com/config/ubuntu/$VERSION_ID/packages-microsoft-prod.deb - dpkg -i packages-microsoft-prod.deb - apt-get update && apt-get install -y powershell - - powershell Install-Module ps2exe -Confirm:$False -Force - - powershell ps2exe .\laps.ps1 -requireAdmin -noOutput -noError -title "LAPS" -description "Outil pour récupérer un mot de passe LAPS dans un Active Directory" -Company "Académie Nancy-Metz" -noconsole + - pwsh Install-Module ps2exe -Confirm:$False -Force + - pwsh ps2exe .\laps.ps1 -requireAdmin -noOutput -noError -title "LAPS" -description "Outil pour récupérer un mot de passe LAPS dans un Active Directory" -Company "Académie Nancy-Metz" -noconsole deploy-job: # This job runs in the deploy stage. stage: deploy # It only runs when *both* jobs in the test stage complete successfully.