From 60759ac2b7747123fb7261212b1ead7ebb2e035c Mon Sep 17 00:00:00 2001 From: Sovian <13745196+Soviann@users.noreply.github.com> Date: Mon, 20 Jul 2026 16:57:54 +0200 Subject: [PATCH] Add soviann/deploy-tasks-bundle recipe (#2014) --- .../config/packages/soviann_deploy_tasks.yaml | 7 +++++++ .../0.1/deploy/host-tasks/.gitignore | 0 soviann/deploy-tasks-bundle/0.1/manifest.json | 17 +++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 soviann/deploy-tasks-bundle/0.1/config/packages/soviann_deploy_tasks.yaml create mode 100644 soviann/deploy-tasks-bundle/0.1/deploy/host-tasks/.gitignore create mode 100644 soviann/deploy-tasks-bundle/0.1/manifest.json diff --git a/soviann/deploy-tasks-bundle/0.1/config/packages/soviann_deploy_tasks.yaml b/soviann/deploy-tasks-bundle/0.1/config/packages/soviann_deploy_tasks.yaml new file mode 100644 index 00000000..3facf8bb --- /dev/null +++ b/soviann/deploy-tasks-bundle/0.1/config/packages/soviann_deploy_tasks.yaml @@ -0,0 +1,7 @@ +soviann_deploy_tasks: + storage: + type: filesystem + filesystem: + path: '%kernel.project_dir%/var/deploy-tasks' + + # Full reference: vendor/soviann/deploy-tasks-bundle/docs/ diff --git a/soviann/deploy-tasks-bundle/0.1/deploy/host-tasks/.gitignore b/soviann/deploy-tasks-bundle/0.1/deploy/host-tasks/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/soviann/deploy-tasks-bundle/0.1/manifest.json b/soviann/deploy-tasks-bundle/0.1/manifest.json new file mode 100644 index 00000000..f07c06c7 --- /dev/null +++ b/soviann/deploy-tasks-bundle/0.1/manifest.json @@ -0,0 +1,17 @@ +{ + "bundles": { + "Soviann\\DeployTasksBundle\\SoviannDeployTasksBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "deploy/": "deploy/" + }, + "copy-from-package": { + "bin/deploy-tasks-host.sh.dist": "%BIN_DIR%/deploy-tasks-host.sh" + }, + "gitignore": [ + "/.deploy-tasks-host.log", + "/.deploy-tasks-host.lock", + "/deploy-tasks-host.local.sh" + ] +}