From 31e13a42ad9f77fb6249230062f71deb44260ab7 Mon Sep 17 00:00:00 2001 From: Fabien Villepinte Date: Thu, 26 Nov 2020 09:23:46 +0000 Subject: [PATCH] Fix release --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1229be8..ff8f322e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,6 +41,12 @@ jobs: content="${content//$'\r'/'%0D'}" echo "::set-output name=message::$content" + - name: "Install dependencies" + run: | + composer config platform.php 7.1.3 + composer update --no-dev --no-interaction --no-progress --prefer-dist + composer config --unset platform.php + - name: "Download Box" run: | curl -sL https://github.com/box-project/box/releases/download/3.9.1/box.phar -o box.phar @@ -84,4 +90,4 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./churn.phar.asc asset_name: churn.phar.asc - asset_content_type: application/octet-stream \ No newline at end of file + asset_content_type: application/octet-stream