Add .gitlab-ci.yml

This commit is contained in:
J. Fronny 2020-06-30 17:08:53 +00:00
parent a40cb94588
commit 67be634f0a
1 changed files with 16 additions and 0 deletions

16
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,16 @@
image: mcr.microsoft.com/dotnet/core/sdk
before_script:
- dotnet restore
pages:
stage: deploy
script:
- mkdir public
- dotnet publish -c Release -o build
- cp -a ./build/WebHax/dist/* ./public
artifacts:
paths:
- public
only:
- master