From 991f18a6fdb8a40e6b9948841323cd656c73a736 Mon Sep 17 00:00:00 2001 From: mol Date: Tue, 8 Aug 2023 17:14:21 +0800 Subject: [PATCH] test: auto --- .drone.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .drone.yml diff --git a/ .drone.yml b/ .drone.yml new file mode 100644 index 0000000..bf995a7 --- /dev/null +++ b/ .drone.yml @@ -0,0 +1,8 @@ +kind: pipeline # 定义一个管道 +type: docker # 当前管道的类型 +name: test # 当前管道的名称 +steps: # 定义管道的执行步骤 + - name: test # 步骤名称 + image: node:latest # 当前步骤使用的镜像 + commands: # 当前步骤执行的命令 + - echo 测试drone执行