diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ca967cb --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: mcr.microsoft.com/windows/server + +Build: + tags: + - windows + script: + - dotnet restore + - dotnet build -c Release --no-restore + - dotnet publish --property:OutputPath=.\publish\ + - Move-Item -Path .\publish\publish\*.exe -Destination .\ + artifacts: + paths: + - .\*.exe + expire_in: 90 days