AnthoLume/.drone.yml

14 lines
279 B
YAML
Raw Normal View History

2023-10-24 00:33:56 +00:00
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