From 09a73fc7a543b90b19928ae9f82c9f328b6a392b Mon Sep 17 00:00:00 2001 From: Marcus Schwemer Date: Fri, 29 Sep 2023 10:30:25 +0200 Subject: [PATCH] [BUGFIX] Run github action only on tags in the public repo Signed-off-by: Marcus Schwemer (cherry picked from commit f429fb5ab35a26e92b5f09d217a8d60862bd8a24) --- .github/workflows/ter-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ter-release.yml b/.github/workflows/ter-release.yml index 710983594..7c19fa28f 100644 --- a/.github/workflows/ter-release.yml +++ b/.github/workflows/ter-release.yml @@ -10,11 +10,12 @@ on: jobs: ter-release: + if: github.repository == 'in2code-de/powermail' name: TER release runs-on: ubuntu-latest env: TYPO3_EXTENSION_KEY: 'powermail' - REPOSITORY_URL: 'https://github.com/einpraegsam/powermail' + REPOSITORY_URL: 'https://github.com/in2code-de/powermail' TYPO3_API_TOKEN: ${{ secrets.TYPO3_API_TOKEN }} TYPO3_API_USERNAME: ${{ secrets.TYPO3_API_USERNAME }} TYPO3_API_PASSWORD: ${{ secrets.TYPO3_API_PASSWORD }}