From f46b553b792b97f8a5f95ab7abe7a4d33cd78eae Mon Sep 17 00:00:00 2001 From: Maxime Leclercq Date: Fri, 8 Apr 2022 14:47:12 +0200 Subject: [PATCH] fix: force the sylius version in recipe workflow --- .github/workflows/recipe.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/recipe.yaml b/.github/workflows/recipe.yaml index 9e2237d..f4e1712 100644 --- a/.github/workflows/recipe.yaml +++ b/.github/workflows/recipe.yaml @@ -63,6 +63,12 @@ jobs: run: | composer create-project --prefer-dist --no-scripts --no-progress --no-install sylius/sylius-standard sylius "${{ matrix.sylius }}" + # Because the sylius-standard has a soft constraint + - name: Make sure to install the required version of Sylius + working-directory: ./sylius + run: | + composer require --no-install --no-scripts --no-progress sylius/sylius="${{ matrix.sylius }}" + - name: Setup some requirements working-directory: ./sylius run: |