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

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/wwwroot/* ./public
artifacts:
paths:
- public
only:
- master