From 8228c48845396832601c8e2da6cd8ad8c4f06e9b Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 29 Oct 2021 11:49:58 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/.drone.yml b/.drone.yml index e7d1591..103b5e3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -72,3 +72,62 @@ trigger: event: - push - merge +--- +kind: pipeline +type: docker +name: prod +steps: + - name: restore-cache + image: meltwater/drone-cache + settings: + backend: filesystem + restore: true + cache_key: node_modules-taskvue + archive_format: gzip + filesystem_cache_root: "/var/lib/cache" + mount: + - node_modules + volumes: + - name: cache + path: "/var/lib/cache" + # Do stuff.. + - name: install + image: node:14 + commands: + - yarn install + - name: rebuild-cache + image: meltwater/drone-cache + settings: + backend: filesystem + rebuild: true + cache_key: node_modules-taskvue + archive_format: gzip + filesystem_cache_root: "/var/lib/cache" + mount: + - 'node_modules' + volumes: + - name: cache + path: "/var/lib/cache" + # Do stuff.. + - name: build + image: node:14 + commands: + - yarn run build + + - name: cp ftp + image: cschlosser/drone-ftps + hostname: example.com:21 + secrets: [ ftp_username, ftp_password ] + secure: true + dest_dir: /v6 + src_dir: /dist +volumes: + - name: cache + host: + path: "/tmp/cache" +trigger: + branch: + - prod + event: + - push + - merge From 8dbebae420c09ea5dc6f0c6bf3c5db3c86a31486 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 29 Oct 2021 11:53:14 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 103b5e3..b9b6d54 100644 --- a/.drone.yml +++ b/.drone.yml @@ -116,7 +116,7 @@ steps: - name: cp ftp image: cschlosser/drone-ftps - hostname: example.com:21 + hostname: 123.56.203.112:21 secrets: [ ftp_username, ftp_password ] secure: true dest_dir: /v6 From 384d4974056d96cc362e59a556324d752dd1c272 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 29 Oct 2021 11:57:32 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index b9b6d54..b855791 100644 --- a/.drone.yml +++ b/.drone.yml @@ -117,7 +117,7 @@ steps: - name: cp ftp image: cschlosser/drone-ftps hostname: 123.56.203.112:21 - secrets: [ ftp_username, ftp_password ] + secrets: [ from_secret: ftp_username, from_secret: ftp_password ] secure: true dest_dir: /v6 src_dir: /dist From 68c1664d5f644481622cd75fe9be6db9808db863 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 29 Oct 2021 12:06:23 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index b855791..c886528 100644 --- a/.drone.yml +++ b/.drone.yml @@ -116,11 +116,14 @@ steps: - name: cp ftp image: cschlosser/drone-ftps - hostname: 123.56.203.112:21 - secrets: [ from_secret: ftp_username, from_secret: ftp_password ] - secure: true - dest_dir: /v6 - src_dir: /dist + environment: + PLUGIN_HOSTNAME: 123.56.203.112:21 + FTP_USERNAME: + from_secret: ftp_username + FTP_PASSWORD: + from_secret: ftp_password + PLUGIN_DEST_DIR: /v6 + PLUGIN_SRC_DIR: /dist volumes: - name: cache host: From 0ccbda6140c9843e1d291b4b8e413118ac929abb Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 29 Oct 2021 12:10:26 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.drone.yml b/.drone.yml index c886528..0ded1d6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -122,6 +122,7 @@ steps: from_secret: ftp_username FTP_PASSWORD: from_secret: ftp_password + PLUGIN_SECURE: false PLUGIN_DEST_DIR: /v6 PLUGIN_SRC_DIR: /dist volumes: From 71a77a0d1aa7fc71ee3bdbeea8b00a9222c319dd Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 29 Oct 2021 12:14:30 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.drone.yml b/.drone.yml index 0ded1d6..63f6ddb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -123,6 +123,7 @@ steps: FTP_PASSWORD: from_secret: ftp_password PLUGIN_SECURE: false + PLUGIN_CHMOD: false PLUGIN_DEST_DIR: /v6 PLUGIN_SRC_DIR: /dist volumes: