Add sample drone file

This commit is contained in:
Tyler Perkins 2023-12-04 18:25:48 -05:00
parent a7a15660d5
commit fa98e99751
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
1 changed files with 13 additions and 0 deletions

13
.drone.yaml Normal file
View File

@ -0,0 +1,13 @@
kind: pipeline
type: docker
name: build-and-release
steps:
- name: build
image: alpine
commands:
- echo "Build your code!"
- name: release
image: alpine
commands:
- echo "Release your code!"