Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
joernott committed Sep 11, 2024
1 parent d91a910 commit 6d71c49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dispatch_metapackage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ jobs:
# ToDo: Remove the ,.github/oxid-esales/defaults/_rename.yaml when releasing v5
DEFAULTS=".github/oxid-esales/defaults/defaults_light.yaml"
echo "testplan=${DEFAULTS},${TESTPLAN},.github/oxid-esales/defaults/_rename.yaml" >>"${GITHUB_OUTPUT}"
find .
- name: 'Load Testplan'
id: ltp
Expand Down Expand Up @@ -212,16 +211,17 @@ jobs:
strategy:
matrix:
php: ${{ fromJSON(needs.gather_data.outputs.php) }}
branch: ['b-7.0', 'b-7.1', 'b-7.2', 'b-8.0']
branch: ['b-${{inputs.version}}']
steps:
- name: 'Download artifacts'
uses: actions/download-artifact@v4
with:
pattern: 'install-*${{matrix.branch}}*-PHP${{matrix.php}}-MYSQL${{needs.gather_data.outputs.mysql}}'
pattern: 'install-*b-*-PHP${{matrix.php}}-MYSQL${{needs.gather_data.outputs.mysql}}'
path: data

- name: 'Rename files'
run: |
find data
mv data/source/composer.lock ${{matrix.branch}}-${{matrix.php}}-composer.lock
mv data/source/composer.json.bak ${{matrix.branch}}-${{matrix.php}}-composer.json
Expand Down

0 comments on commit 6d71c49

Please sign in to comment.