Update .gitlab-ci.yml file

This commit is contained in:
J. Secula
2025-06-05 10:01:18 +02:00
parent 0859929cbd
commit 9dc69e3f2f

View File

@ -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 - wget -q https://packages.microsoft.com/config/ubuntu/$VERSION_ID/packages-microsoft-prod.deb
- dpkg -i packages-microsoft-prod.deb - dpkg -i packages-microsoft-prod.deb
- apt-get update && apt-get install -y powershell - apt-get update && apt-get install -y powershell
- pwsh Install-Module ps2exe -Confirm:$False -Force - pwsh -Command {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 - pwsh -Command {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. deploy-job: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully. stage: deploy # It only runs when *both* jobs in the test stage complete successfully.