We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c68d77c commit fd70284Copy full SHA for fd70284
1 file changed
azure/templates/run-smoke-tests.yml
@@ -14,10 +14,11 @@ steps:
14
export APIGEE_ACCESS_TOKEN="$(secret.AccessToken)"
15
export SOURCE_COMMIT_ID="$(Build.SourceVersion)"
16
17
- if [ ${{ parameters.production }} = "true" ]; then
+ if [ "${{ parameters.production }}" = "true" ]; then
18
echo "Running smoketest-prod"
19
make smoketest-prod
20
else
21
+ echo "Running smoketest"
22
make smoketest
23
fi
24
workingDirectory: $(Pipeline.Workspace)/s/$(SERVICE_NAME)/$(SERVICE_ARTIFACT_NAME)
0 commit comments