From dd98867225d0bddfede7d56688fd935bf10aaf9c Mon Sep 17 00:00:00 2001 From: Laurent Laville Date: Fri, 1 Dec 2023 08:36:09 +0000 Subject: [PATCH] CI: fix Release workflow - we should install dependencies before to compile the PHAR version --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5951856..87937375 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,17 +36,17 @@ jobs: php-version: ${{ matrix.php }} tools: ${{ matrix.tools }} - - # https://github.com/box-project/box - name: Build Release Artifacts - run: | - box compile - - # https://github.com/ramsey/composer-install name: Install Composer dependencies uses: ramsey/composer-install@v2 with: composer-options: "--prefer-dist" + - # https://github.com/box-project/box + name: Build Release Artifacts + run: | + box compile + - # https://github.com/softprops/action-gh-release name: Create Release from current tag if: github.ref_type == 'tag'