AnthoLume/.drone.yml
Evan Reichard a11514913a
All checks were successful
continuous-integration/drone Build is passing
[add] drone config
2023-10-23 20:33:56 -04:00

14 lines
279 B
YAML

kind: pipeline
type: kubernetes
name: default
steps:
- name: generate_tags
image: node
commands:
- echo -n "${DRONE_BRANCH}-$(date +'%Y%m%d%H%M%S')-${DRONE_COMMIT:0:10}, latest" > .tags
- name: unit test
image: golang
commands:
- make tests_unit