demo/.drone.yml
Admin c5398a92e0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
test ci
2024-06-21 23:25:44 +08:00

19 lines
386 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: restore
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet restore
- name: build
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet build --configuration Release
- name: publish
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet publish -c Release -o out