demo/.drone.yml

19 lines
386 B
YAML
Raw Permalink Normal View History

2024-06-21 22:17:29 +08:00
kind: pipeline
2024-06-21 22:39:30 +08:00
type: docker
2024-06-21 22:17:29 +08:00
name: default
steps:
2024-06-21 22:39:30 +08:00
- name: restore
2024-06-21 22:17:29 +08:00
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
2024-06-21 22:39:30 +08:00
- dotnet restore
- name: build
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
2024-06-21 23:22:23 +08:00
- dotnet build --configuration Release
- name: publish
2024-06-21 23:25:44 +08:00
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet publish -c Release -o out