clouddreamai-cicd-setup 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -151,7 +151,7 @@ deploy_dev:
|
|
|
151
151
|
APP_PORT: "{{DEV_PORT}}"
|
|
152
152
|
cache: {}
|
|
153
153
|
before_script:
|
|
154
|
-
- apk add --no-cache sshpass bash openssl rsync
|
|
154
|
+
- apk add --no-cache sshpass bash openssl rsync openssh-client
|
|
155
155
|
- mkdir -p ~/.ssh
|
|
156
156
|
- chmod 700 ~/.ssh
|
|
157
157
|
# 使用密码认证,跳过 SSH 主机密钥检查
|
|
@@ -182,7 +182,7 @@ deploy_prod:
|
|
|
182
182
|
APP_PORT: "{{PROD_PORT}}"
|
|
183
183
|
cache: {}
|
|
184
184
|
before_script:
|
|
185
|
-
- apk add --no-cache sshpass bash openssl rsync
|
|
185
|
+
- apk add --no-cache sshpass bash openssl rsync openssh-client
|
|
186
186
|
- mkdir -p ~/.ssh
|
|
187
187
|
- chmod 700 ~/.ssh
|
|
188
188
|
# 使用密码认证,跳过 SSH 主机密钥检查
|
|
@@ -151,7 +151,7 @@ deploy_dev:
|
|
|
151
151
|
APP_PORT: "{{DEV_PORT}}"
|
|
152
152
|
cache: {}
|
|
153
153
|
before_script:
|
|
154
|
-
- apk add --no-cache sshpass bash openssl rsync
|
|
154
|
+
- apk add --no-cache sshpass bash openssl rsync openssh-client
|
|
155
155
|
- mkdir -p ~/.ssh
|
|
156
156
|
- chmod 700 ~/.ssh
|
|
157
157
|
# 使用密码认证,跳过 SSH 主机密钥检查
|
|
@@ -182,7 +182,7 @@ deploy_prod:
|
|
|
182
182
|
APP_PORT: "{{PROD_PORT}}"
|
|
183
183
|
cache: {}
|
|
184
184
|
before_script:
|
|
185
|
-
- apk add --no-cache sshpass bash openssl rsync
|
|
185
|
+
- apk add --no-cache sshpass bash openssl rsync openssh-client
|
|
186
186
|
- mkdir -p ~/.ssh
|
|
187
187
|
- chmod 700 ~/.ssh
|
|
188
188
|
# 使用密码认证,跳过 SSH 主机密钥检查
|