diff --git a/.drone.yml b/.drone.yml index 7af90fb..c5a5ec6 100755 --- a/.drone.yml +++ b/.drone.yml @@ -12,12 +12,12 @@ steps: # 定义管道的执行步骤 - git version - pwd - ls -a + - cd hyperf - name: build # 步骤名称 image: composer:latest # 当前步骤使用的镜像 image: composer:latest 执行 composer 的依赖加载 commands: # 当前步骤执行的命令 - composer -v - ls -a - - cd hyperf #- composer require firebase/php-jwt # 没有composer.json 和 lock文件 # 如果第一次使用composer 就使用composer require 包名,可以自动创建 vend 和对应的文件 # 当然这是在本地的时候去创建【本地有了 拉取代码的时候 才能去执行自动拉取】 拉取代码的时候 直接composer install 即可