Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlincecum committed Mar 4, 2024
1 parent afb1913 commit 7d1ca7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-sandbox-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 7d1ca7e

Please sign in to comment.