demo/.drone.yml
2024-06-21 23:22:23 +08:00

19 lines
392 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