TeleTok/.drone.yml

22 lines
294 B
YAML
Raw Normal View History

2023-02-13 17:52:25 -05:00
---
kind: pipeline
name: build-app
steps:
- name: build-dotnet
image: mcr.microsoft.com/dotnet/sdk:6.0
commands:
- dotnet build
steps:
- name: build-docker
image: docker:dind
volumes:
- name: dockersock
path: /var/run/docker.sock
trigger:
branch:
- main
event:
- push