From f1a2e703183afe508cf46125289bff8ed8d85895 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Mon, 2 Feb 2026 19:20:08 +0100 Subject: [PATCH 1/2] fix: default create release at production too --- .forgejo/workflows/typo3-staged-deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/typo3-staged-deploy.yaml b/.forgejo/workflows/typo3-staged-deploy.yaml index 7da0481..bed5f3e 100644 --- a/.forgejo/workflows/typo3-staged-deploy.yaml +++ b/.forgejo/workflows/typo3-staged-deploy.yaml @@ -60,7 +60,7 @@ on: description: 'Also deploy to production after stage succeeds' required: false type: boolean - default: false + default: true secrets: stage_key: description: 'SSH key for staging' From 127e7674d73c5ff9192a38bf2898ca389a491ea5 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Mon, 2 Feb 2026 19:20:26 +0100 Subject: [PATCH 2/2] fix: wrong import at deploy example --- examples/project-deploy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/project-deploy.php b/examples/project-deploy.php index 79fe623..aa26385 100644 --- a/examples/project-deploy.php +++ b/examples/project-deploy.php @@ -9,7 +9,7 @@ namespace Deployer; // Option 1: Require from git raw URL (works immediately, no composer) -require 'https://git.cloonar.com/Cloonar/ci-templates/raw/branch/main/deployer/typo3-recipe.php'; +require 'https://git.cloonar.com/infrastructure/ci-templates/raw/branch/main/deployer/typo3-recipe.php'; // Option 2: Via composer (after adding to require-dev) // require __DIR__ . '/../vendor/cloonar/ci-templates/deployer/typo3-recipe.php';