From eafadaa3f2b177192741aa489d22757f2ca761c8 Mon Sep 17 00:00:00 2001 From: YuanHuakk <1751826683@qq.com> Date: Fri, 8 Mar 2024 20:24:32 +0800 Subject: [PATCH] ci(custom): --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 675c797..fb4d97a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,13 +5,13 @@ name: default steps: - name: 测试服-依赖安装&&编译打包 pull: if-not-exists - image: node:20-alpine + image: node:20 when: branch: - test commands: - npm config set registry https://registry.npmmirror.com/ - - npm install -g @tarojs/cli pnpm + - npm install -g pnpm - pnpm install - pnpm build:h5:test - rm -rf dist.tar @@ -20,13 +20,13 @@ steps: - name: 正式服-依赖安装&&编译打包 pull: if-not-exists - image: node:20-alpine + image: node:20 when: branch: - master commands: - npm config set registry https://registry.npmmirror.com/ - - npm install -g @tarojs/cli pnpm + - npm install -g pnpm - pnpm install - pnpm build:h5:prod - rm -rf dist.tar