TeleTok/.drone.yml
2023-02-14 00:34:54 -05:00

24 lines
355 B
YAML

---
kind: pipeline
type: docker
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
# Commented out until stuff actually works
#trigger:
# branch:
# - main
# event:
# - push