From 5972bb0820a74fa8146f2b433634260329f1b570 Mon Sep 17 00:00:00 2001 From: bulutdag Date: Tue, 15 Sep 2026 14:44:17 +0200 Subject: [PATCH] Change variable reference syntax in Mendix Pipelines Updated variable reference format from '$' to '{{}}' for Mendix Pipeline outputs. --- content/en/docs/deployment/general/mendix-pipelines/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/deployment/general/mendix-pipelines/_index.md b/content/en/docs/deployment/general/mendix-pipelines/_index.md index d7a8f95d9a4..856f6df3a5e 100644 --- a/content/en/docs/deployment/general/mendix-pipelines/_index.md +++ b/content/en/docs/deployment/general/mendix-pipelines/_index.md @@ -256,7 +256,7 @@ There are two types of variables: 1. Mendix-defined variables - * These are provided by Mendix. Every Mendix Pipeline step results in some outputs which can be referenced in subsequent steps. For example, Publish uses the output of Build as `$Build.DeploymentPackage`. Similarly, Deploy uses `$Publish.DeploymentPackage` to deploy to the selected environment. Click **Outputs** inside a Mendix Pipeline **Designs** tab to view a step’s output variables. Step outputs are always written in the format `$StepName.OutputName` for easy reference across other steps. + * These are provided by Mendix. Every Mendix Pipeline step results in some outputs which can be referenced in subsequent steps. For example, Publish uses the output of Build as `{{Build.DeploymentPackage}}`. Similarly, Deploy uses `{{Publish.DeploymentPackage}}` to deploy to the selected environment. Click **Outputs** inside a Mendix Pipeline **Designs** tab to view a step’s output variables. Step outputs are always written in the format `{{StepName.OutputName}}` for easy reference across other steps. * The scope of these variables is specific to a particular Mendix Pipeline design within a Mendix app. 2. User-defined variables