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