Merge pull request #68 from Masterain98/master

Create GitLab CI Config File
This commit is contained in:
HolographicHat
2023-09-21 23:46:58 +08:00
committed by GitHub

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