From 4551202e2317c49c06f5cb2c1c8342579b9e505b Mon Sep 17 00:00:00 2001 From: fandongqiang <1075044867@qq.com> Date: Fri, 22 Sep 2023 16:08:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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..646918f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,8 @@ +kind: pipeline # 定义一个管道 +type: docker # 当前管道的类型 +name: test # 当前管道的名称 +steps: # 定义管道的执行步骤 + - name: test # 步骤名称 + image: node:latest # 当前步骤使用的镜像 + commands: # 当前步骤执行的命令 + - echo 测试drone执行 \ No newline at end of file