Create .gitlab-ci.yml

This commit is contained in:
Masterain
2023-09-21 00:01:13 -07:00
parent 73747bcce5
commit 7175cd7427

14
.gitlab-ci.yml Normal file
View File

@@ -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