From 0330712f5234ed28de648202fdf5829858ebfe55 Mon Sep 17 00:00:00 2001 From: fandongqiang <1075044867@qq.com> Date: Fri, 22 Sep 2023 15:45:54 +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 | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1b8f5e2..646918f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,10 +1,8 @@ -kind: pipeline -type: ssh -name: 部署web项目 -clone: - disable: false - -steps: - - name: greeting - commands: - - echo hello world \ No newline at end of file +kind: pipeline # 定义一个管道 +type: docker # 当前管道的类型 +name: test # 当前管道的名称 +steps: # 定义管道的执行步骤 + - name: test # 步骤名称 + image: node:latest # 当前步骤使用的镜像 + commands: # 当前步骤执行的命令 + - echo 测试drone执行 \ No newline at end of file