From 683a59cafe5db2ac304f23122e109028bfb3922f Mon Sep 17 00:00:00 2001 From: Gong <534592533@qq.com> Date: Mon, 28 Aug 2023 15:46:56 +0800 Subject: [PATCH] fix: YML --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index c5a5ec6..0a9a7ed 100755 --- a/.drone.yml +++ b/.drone.yml @@ -12,13 +12,14 @@ steps: # 定义管道的执行步骤 - git version - pwd - ls -a - - cd hyperf - name: build # 步骤名称 image: composer:latest # 当前步骤使用的镜像 image: composer:latest 执行 composer 的依赖加载 commands: # 当前步骤执行的命令 - composer -v - ls -a - #- composer require firebase/php-jwt # 没有composer.json 和 lock文件 + - cd hyperf + + #- composer require firebase/php-jwt # 没有composer.json 和 lock文件 # 如果第一次使用composer 就使用composer require 包名,可以自动创建 vend 和对应的文件 # 当然这是在本地的时候去创建【本地有了 拉取代码的时候 才能去执行自动拉取】 拉取代码的时候 直接composer install 即可