From 26201cc3d11d5bc8f0c5e5b89521a0c35f11c8a8 Mon Sep 17 00:00:00 2001 From: Bart Jaskulski <bjaskulski@protonmail.com> Date: Fri, 6 Dec 2024 13:52:21 +0100 Subject: [PATCH] fix: update default value specification Signed-off-by: Bart Jaskulski <bjaskulski@protonmail.com> --- gitlab-ci-1.2.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gitlab-ci-1.2.yml b/gitlab-ci-1.2.yml index 35b0ec9..5f7bf2c 100644 --- a/gitlab-ci-1.2.yml +++ b/gitlab-ci-1.2.yml @@ -13,8 +13,8 @@ variables: MINIMAL_WP_TESTED_UP: "6.2" MINIMAL_WC_TESTED_UP: "8.1" DEMO_DEPLOY_TARGETS: - value: "demo.wpdesk.org,demo.wpdesk.pl" - description: "Override this variable in project's .gitlab-ci.yml to support other servers. List supported targets separated by `,`. You may also use short name for deploy target, like \"wpdesk,octolize\" to support both wpdesk and both octolize targets. Currently supported targets: demo.wpdesk.org, demo.wpdesk.pl, demo.octolize.com, stage.demo.octolize.com, demo.flexibleinvoices." + value: "/(demo.wpdesk.org|demo.wpdesk.pl)/" + description: "Override this variable in project's .gitlab-ci.yml to support other servers. List supported targets in a regexg expression. To support all possible targets just use \"/.*/\". Currently supported targets: demo.wpdesk.org, demo.wpdesk.pl, demo.octolize.com, stage.demo.octolize.com, demo.flexibleinvoices." stages: - prepare-vendor @@ -28,7 +28,7 @@ stages: include: - project: 'wpdesk/gitlab-ci' - ref: 'feat/demo-deploy' + ref: 'master' file: - '/includes/prepare.yml' - '/includes/translations.yml' -- GitLab