From e637e9919216aa69273f4850f97671c7a9c6469a Mon Sep 17 00:00:00 2001 From: giaogiao Date: Tue, 12 Sep 2023 09:26:11 +0800 Subject: [PATCH] first commit --- .drone.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..564a1a0 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,25 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: test + image: alpine + volumes: + - name: cache + path: /go + commands: + - ls / + +- name: build + image: alpine + volumes: + - name: cache + path: /go + commands: + - ls / + +volumes: +- name: cache + temp: {} + \ No newline at end of file