From 97c8cb5cbb1cf1d238822a7b8cfbcdd55e4bef6f Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 3 Feb 2026 14:51:06 +0100 Subject: [PATCH] fix: deploy lib --- .forgejo/workflows/deployer-release-create.yaml | 1 - .forgejo/workflows/deployer-release-switch.yaml | 1 - .forgejo/workflows/typo3-build.yaml | 6 ++++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/deployer-release-create.yaml b/.forgejo/workflows/deployer-release-create.yaml index fa7ba09..dc7e031 100644 --- a/.forgejo/workflows/deployer-release-create.yaml +++ b/.forgejo/workflows/deployer-release-create.yaml @@ -67,7 +67,6 @@ 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 - name: Create release uses: deployphp/action@v1 diff --git a/.forgejo/workflows/deployer-release-switch.yaml b/.forgejo/workflows/deployer-release-switch.yaml index 05b0e29..9a79f71 100644 --- a/.forgejo/workflows/deployer-release-switch.yaml +++ b/.forgejo/workflows/deployer-release-switch.yaml @@ -68,7 +68,6 @@ 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 - name: Switch release uses: deployphp/action@v1 diff --git a/.forgejo/workflows/typo3-build.yaml b/.forgejo/workflows/typo3-build.yaml index c83f2c4..d5e3a92 100644 --- a/.forgejo/workflows/typo3-build.yaml +++ b/.forgejo/workflows/typo3-build.yaml @@ -45,12 +45,14 @@ jobs: tools: composer - name: Install PHP dependencies - run: composer install --prefer-dist --no-progress --no-dev --ignore-platform-reqs + 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 \ + bin public packages config vendor build composer.json composer.lock deploy-lib.php \ 2>/dev/null || true - name: Upload artifact