Skip to content

Commit e0892c0

Browse files
committed
Fix using the right working directory
1 parent 9ec47c5 commit e0892c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/setup-build/action.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ runs:
5252
- name: "Composer allow dev dependencies"
5353
if: ${{ inputs.composer-allow-dev }}
5454
shell: bash
55-
run: composer config minimum-stability dev && composer config prefer-stable true --working-dir=${{ inputs.composer-working-dir }}
55+
run: |
56+
composer config minimum-stability dev --working-dir=${{ inputs.composer-working-dir }}
57+
composer config prefer-stable true --working-dir=${{ inputs.composer-working-dir }}
5658
5759
- name: "Install Flex to require specific Symfony version"
5860
if: ${{ inputs.symfony-version }}

0 commit comments

Comments
 (0)