diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f34bf1256bdad296a2bb571f34577dd3a593a146..0e2837c60aa276d93d407d5004903b653376cb6e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,19 +15,16 @@ stages: # List of stages for jobs, and their order of execution - build - - test - - deploy - + +image: "mcr.microsoft.com/dotnet/sdk:6.0" +before_script: + - apt-get install -y p7zip build-job: # This job runs in the build stage, which runs first. stage: build + + script: - "dotnet clean" - "dotnet restore" - "dotnet build -c Release --output out/ --no-restore" - ## - -deploy-job: # This job runs in the deploy stage. - stage: deploy # It only runs when *both* jobs in the test stage complete successfully. - script: - - echo "Deploying application..." - - echo "Application successfully deployed." + ## \ No newline at end of file