TeleTok/.drone.yml

24 lines
355 B
YAML
Raw Normal View History

2023-02-13 17:52:25 -05:00
---
kind: pipeline
2023-02-14 00:34:54 -05:00
type: docker
2023-02-13 17:52:25 -05:00
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
2023-02-13 19:19:55 -05:00
# Commented out until stuff actually works
#trigger:
# branch:
# - main
# event:
# - push