From 997f6c92608e1d81acbaef0c01937bbfd9c7ea6b Mon Sep 17 00:00:00 2001 From: Simon Praetorius Date: Wed, 3 Feb 2021 18:20:58 +0100 Subject: [PATCH 1/2] [TASK] Increment version number --- ext_emconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index eef050e..3ce3f8b 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -9,7 +9,7 @@ 'state' => 'stable', 'uploadfolder' => false, 'clearCacheOnLoad' => false, - 'version' => '2.3.0', + 'version' => '2.4.0', 'constraints' => [ 'depends' => [ 'typo3' => '9.5.0-10.9.99', From db91baf93e4e29fec0a6b0d99c37102885b56997 Mon Sep 17 00:00:00 2001 From: Simon Praetorius Date: Wed, 3 Feb 2021 18:21:50 +0100 Subject: [PATCH 2/2] [TASK] Automated TER release --- .github/workflows/release.yml | 17 +++++++++++++++++ composer.json | 8 ++++++-- 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..fb38b8a --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,17 @@ +name: release + +on: + push: + tags: + - "**" + +jobs: + terUpload: + runs-on: ubuntu-latest + strategy: + fail-fast: false + steps: + - uses: actions/checkout@v1 + - uses: tomasnorre/typo3-upload-ter@v2 + with: + api-token: ${{ secrets.TYPO3_API_TOKEN }} diff --git a/composer.json b/composer.json index 0cfeffb..2916d1f 100644 --- a/composer.json +++ b/composer.json @@ -41,7 +41,8 @@ "extra": { "typo3/cms": { "cms-package-dir": "{$vendor-dir}/typo3/cms", - "web-dir": ".Build/Web" + "web-dir": ".Build/Web", + "extension-key": "fluid_components" } }, "scripts": { @@ -56,6 +57,9 @@ "@test:integration" ], "test:unit": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit/", - "test:integration": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Integration/" + "test:integration": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Integration/", + "prepare-release": [ + "rm -r .github .ecrc .editorconfig .gitattributes Tests" + ] } }