droneyaml/.drone.yml

26 lines
271 B
YAML
Raw Normal View History

2023-09-12 09:26:11 +08:00
kind: pipeline
type: docker
name: default
steps:
- name: test
image: alpine
volumes:
- name: cache
path: /go
commands:
- ls /
2023-09-12 09:27:45 +08:00
2023-09-12 09:26:11 +08:00
- name: build
image: alpine
volumes:
- name: cache
path: /go
commands:
- ls /
volumes:
- name: cache
temp: {}