2 Commits e37df03087 ... 1245ff4118

Author SHA1 Message Date
  liql 1245ff4118 测试 drone 2 years ago
  liql 3be17789fa 测试 drone 2 years ago
1 changed files with 8 additions and 9 deletions
  1. 8 9
      drone.yml

+ 8 - 9
drone.yml

@@ -3,15 +3,6 @@ type: docker # 定义流水线类型,还有kubernetes、exec、ssh等类型
 name: veterans_demo # 定义流水线名称
 
 steps: # 定义流水线执行步骤,这些步骤将顺序执行
-  - name: package # 流水线名称
-    image: hello-world:latest # 定义创建容器的Docker镜像
-    volumes: #将容器内目录挂载到宿主机,仓库需要开启Trusted设置
-      - name: node-build
-        path: /tmp
-    commands: # 定义在Docker容器中执行的shell命令
-      - mkdir -p /tmp/veterans_demo
-      - cp -r images index.html js styles /tmp/veterans_demo
-
   - name: deploy
     image: appleboy/drone-ssh # SSH工具镜像
     settings:
@@ -21,6 +12,14 @@ steps: # 定义流水线执行步骤,这些步骤将顺序执行
         from_secret: 64_ssh_pw # 从Secret中读取SSH密码
       port: 22 # 远程连接端口
       command_timeout: 5m # 远程执行命令超时时间
+      volumes: #将容器内目录挂载到宿主机,仓库需要开启Trusted设置
+        - name: node-build
+          path: /tmp
+      commands: # 定义在Docker容器中执行的shell命令
+        - pwd
+        - ls
+        - mkdir -p /tmp/veterans_demo
+        - cp -r /drone/src/* /tmp/veterans_demo/
       script:
         - mv /www/wwwroot/veterentry.hw.hongweisoft.com/ /tmp/$(uuidgen)
         - mkdir -p /www/wwwroot/veterentry.hw.hongweisoft.com