From eb11b3d8881e981d13d520311c877a876b4a6bf2 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 10 Feb 2026 18:19:21 +0100 Subject: [PATCH] feat: change name of deployer recipe download --- .forgejo/workflows/deployer-release-create.yaml | 1 + .forgejo/workflows/deployer-release-switch.yaml | 2 +- .forgejo/workflows/typo3-build.yaml | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/deployer-release-create.yaml b/.forgejo/workflows/deployer-release-create.yaml index dc7e031..a01a991 100644 --- a/.forgejo/workflows/deployer-release-create.yaml +++ b/.forgejo/workflows/deployer-release-create.yaml @@ -67,6 +67,7 @@ jobs: run: | apt-get update -qq && apt-get install -y -qq openssh-client rsync composer require deployer/deployer --dev -q + curl -o deploy-typo3-lib.php https://git.cloonar.com/infrastructure/ci-templates/raw/branch/main/deployer/typo3-recipe.php - name: Create release uses: deployphp/action@v1 diff --git a/.forgejo/workflows/deployer-release-switch.yaml b/.forgejo/workflows/deployer-release-switch.yaml index 5467a56..2e8dace 100644 --- a/.forgejo/workflows/deployer-release-switch.yaml +++ b/.forgejo/workflows/deployer-release-switch.yaml @@ -62,7 +62,7 @@ jobs: run: | apt-get update -qq && apt-get install -y -qq openssh-client rsync composer require deployer/deployer --dev -q - curl -o deploy-lib.php https://git.cloonar.com/infrastructure/ci-templates/raw/branch/main/deployer/typo3-recipe.php + curl -o deploy-typo3-lib.php https://git.cloonar.com/infrastructure/ci-templates/raw/branch/main/deployer/typo3-recipe.php - name: Switch release uses: deployphp/action@v1 diff --git a/.forgejo/workflows/typo3-build.yaml b/.forgejo/workflows/typo3-build.yaml index d5e3a92..1f9ec9b 100644 --- a/.forgejo/workflows/typo3-build.yaml +++ b/.forgejo/workflows/typo3-build.yaml @@ -47,12 +47,11 @@ jobs: - name: Install PHP dependencies run: | composer install --prefer-dist --no-progress --no-dev --ignore-platform-reqs - curl -o deploy-lib.php https://git.cloonar.com/infrastructure/ci-templates/raw/branch/main/deployer/typo3-recipe.php - name: Create artifact run: | tar -czf build.tar.gz \ - bin public packages config vendor build composer.json composer.lock deploy-lib.php \ + bin public packages config vendor build composer.json composer.lock \ 2>/dev/null || true - name: Upload artifact