Files
Yae/.gitlab-ci.yml
2023-09-21 00:01:13 -07:00

15 lines
323 B
YAML

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