mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:56:12 +01:00
[TASK] Only install Composer packages once in a CI build (#330)
If the CI build will do a composer update in the next step anyway, there is no need to actually install any packages when requiring the desired TYPO3 version. Fixes #324
This commit is contained in:
parent
bd68297b90
commit
696ec68eb0
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -122,7 +122,7 @@ jobs:
|
||||||
TYPO3: "${{ matrix.typo3-version }}"
|
TYPO3: "${{ matrix.typo3-version }}"
|
||||||
name: "Install TYPO3 Core"
|
name: "Install TYPO3 Core"
|
||||||
run: |
|
run: |
|
||||||
composer require --no-progress typo3/minimal:"$TYPO3"
|
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
||||||
composer show
|
composer show
|
||||||
- if: "matrix.composer-dependencies == 'lowest'"
|
- if: "matrix.composer-dependencies == 'lowest'"
|
||||||
name: "Install lowest dependencies with composer"
|
name: "Install lowest dependencies with composer"
|
||||||
|
@ -175,7 +175,7 @@ jobs:
|
||||||
TYPO3: "${{ matrix.typo3-version }}"
|
TYPO3: "${{ matrix.typo3-version }}"
|
||||||
name: "Install TYPO3 Core"
|
name: "Install TYPO3 Core"
|
||||||
run: |
|
run: |
|
||||||
composer require --no-progress typo3/minimal:"$TYPO3"
|
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
||||||
composer show
|
composer show
|
||||||
- if: "matrix.composer-dependencies == 'lowest'"
|
- if: "matrix.composer-dependencies == 'lowest'"
|
||||||
name: "Install lowest dependencies with composer"
|
name: "Install lowest dependencies with composer"
|
||||||
|
|
Loading…
Reference in a new issue