Newsbot.Collector/.drone.yml
James Tombleson 1e8c489df7
All checks were successful
continuous-integration/drone/pr Build is passing
attempting upload to gitea
2023-06-13 22:09:47 -07:00

37 lines
596 B
YAML

---
kind: pipeline
type: docker
name: build
steps:
- name: build image
image: plugins/docker
settings:
repo: git.jamestombleson.com/jtom38/newsbot-collector
registry: git.jamestombleson.com
#insecure: true
tags:
- latest
- master
trigger:
branch:
include:
- master
event:
exclude:
- pull_request
---
kind: pipeline
type: docker
name: compile
steps:
- name: Compile project
image: mcr.microsoft.com/dotnet/sdk:7.0.103
commands:
- dotnet restore
- dotnet build
trigger:
event:
- pull_request