Skip to content

Commit 249d907

Browse files
committed
[BUGFIX] fix ter upload 2
1 parent 598aaaa commit 249d907

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/tasks.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,7 @@ jobs:
2626
uses: shivammathur/setup-php@v2
2727
with:
2828
php-version: ${{ matrix.php }}
29-
- uses: actions/checkout@v4
30-
- uses: actions/cache@v4
31-
with:
32-
path: ~/.composer/cache/files
33-
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
34-
restore-keys: |
35-
${{ runner.os }}-${{ matrix.php }}-composer-
29+
- uses: actions/checkout@v6
3630
- run: composer update --with typo3/cms-core:^${{ matrix.typo3 }}
3731
- run: ./vendor/bin/grumphp run --ansi
3832

@@ -45,7 +39,7 @@ jobs:
4539
TYPO3_API_TOKEN: ${{ secrets.TYPO3_API_TOKEN }}
4640

4741
steps:
48-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v6
4943
- name: Get the version
5044
id: get-version
5145
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
@@ -78,7 +72,7 @@ jobs:
7872
- name: Upload EXT:visual_editor to TER
7973
run: |
8074
sed -i 's/InstalledVersions::getPrettyVersion('\''friendsoftypo3\/visual-editor'\'')/'\''${{ env.version }}'\''/g' ext_emconf.php \
81-
sed -i 's/$version,/'\''${{ env.version }}'\','/g' ext_emconf.php \
75+
&& sed -i 's/$version,/'\''${{ env.version }}'\','/g' ext_emconf.php \
8276
&& git config --global user.email "no@one" \
8377
&& git config --global user.name "No One" \
8478
&& git add ext_emconf.php \

0 commit comments

Comments
 (0)