feat: with drone
Some checks reported errors
continuous-integration/drone Build encountered an error

This commit is contained in:
Kasper Juul Hermansen 2023-04-08 12:34:57 +02:00
parent e1b95ee379
commit 53747d400c
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 15 additions and 0 deletions

3
.drone.yml Normal file
View File

@ -0,0 +1,3 @@
kind: template
load: shuttle-drone.yaml
name: releaser

12
shuttletask/ci.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
"context"
"log"
)
func Ci(ctx context.Context) error {
log.Println("CI")
return nil
}