From b016a4119700ec663d1ae464edfbc8da64204d1e Mon Sep 17 00:00:00 2001 From: Matthias Vogel Date: Wed, 16 Feb 2022 15:55:41 +0100 Subject: [PATCH] fix release in TER --- .github/workflows/tasks.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tasks.yml b/.github/workflows/tasks.yml index 0f3ac00..ec17e3c 100644 --- a/.github/workflows/tasks.yml +++ b/.github/workflows/tasks.yml @@ -23,7 +23,7 @@ jobs: name: TER release runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') - needs: [ lint-php] + needs: [ lint-php ] env: TYPO3_EXTENSION_KEY: 'ssi_include' REPOSITORY_URL: 'https://github.com/andersundsehr/ssi_include' @@ -53,7 +53,8 @@ jobs: && git config --global user.email "no@one" \ && git config --global user.name "No One" \ && git add ext_emconf.php \ - && jq '.require = .["ter-require"]' composer.json | sponge composer.json \ + && jq '.require = .["ter-require"]' composer.json > composer.json_tmp \ + && mv composer.json_tmp composer.json \ && composer i --no-dev \ && git add vendor -f \ && git commit -m 'x' -n \