This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
WebHax/.gitlab-ci.yml

17 lines
269 B
YAML
Raw Normal View History

2020-06-30 19:08:53 +02:00
image: mcr.microsoft.com/dotnet/core/sdk
before_script:
- dotnet restore
pages:
stage: deploy
script:
- mkdir public
- dotnet publish -c Release -o build
2020-06-30 19:15:56 +02:00
- cp -a ./build/wwwroot/* ./public
2020-06-30 19:08:53 +02:00
artifacts:
paths:
- public
only:
- master