From 7d1ca7ec0e9ce049d1648da8c2541455cb12a7dd Mon Sep 17 00:00:00 2001 From: robertlincecum Date: Mon, 4 Mar 2024 14:07:29 -0600 Subject: [PATCH] fix syntax error --- .github/workflows/deploy-prod-common.yml | 4 ++-- .github/workflows/deploy-sandbox-common.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-prod-common.yml b/.github/workflows/deploy-prod-common.yml index 3c7c8ae..777b76a 100644 --- a/.github/workflows/deploy-prod-common.yml +++ b/.github/workflows/deploy-prod-common.yml @@ -319,7 +319,7 @@ jobs: env: ${{ inputs.env }} update_version_command: npm version prepatch --preid=rc --no-git-tag-version rails: '[[ ! "$VERSION" =~ "rc" ]] && [[ ! "$VERSION" =~ "pre" ]]' - update_version: {{ inputs.update_version }}} + update_version: ${{ inputs.update_version }}} cloud_deploy: ${{ inputs.cloud_deploy }} needs_build: ${{ inputs.needs_build }} needs_export: ${{ inputs.needs_export }} @@ -343,7 +343,7 @@ jobs: env: ${{ inputs.env }} update_version_command: npm version prepatch --preid=rc --no-git-tag-version rails: '[[ ! "$VERSION" =~ "rc" ]] && [[ ! "$VERSION" =~ "pre" ]]' - update_version: {{ inputs.update_version }}} + update_version: ${{ inputs.update_version }}} cloud_deploy: ${{ inputs.cloud_deploy }} needs_build: ${{ inputs.needs_build }} needs_export: ${{ inputs.needs_export }} diff --git a/.github/workflows/deploy-sandbox-common.yml b/.github/workflows/deploy-sandbox-common.yml index 8741320..adeade5 100644 --- a/.github/workflows/deploy-sandbox-common.yml +++ b/.github/workflows/deploy-sandbox-common.yml @@ -118,7 +118,7 @@ jobs: env: ${{ inputs.env }} update_version_command: "jq --arg new_version \"v$(semver -i patch $(jq -r '.version' package.json | sed 's/^v//'))\" '.version = $new_version' package.json > temp.json && mv temp.json package.json" rails: '[[ ! "$VERSION" =~ "pre" ]]' - update_version: {{ inputs.update_version }} + update_version: ${{ inputs.update_version }} cloud_deploy: ${{ inputs.cloud_deploy }} needs_build: ${{ inputs.needs_build }} needs_export: ${{ inputs.needs_export }}