Skip to content

Commit

Permalink
[IngestionClient] Use raw jq output to remove quotes in version (#1708)
Browse files Browse the repository at this point in the history
* Update ingestion_client.yaml

* Update ingestion_client.yaml
  • Loading branch information
HenryvanderVegte authored Oct 24, 2022
1 parent 30f5b84 commit 638c083
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ingestion_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
id: get_release_versions
run: |
set -u -e -o pipefail
version=$(cat ./samples/ingestion/ingestion-client/Setup/ArmTemplateBatch.json | jq .variables.Version)
versionRealtime=$(cat ./samples/ingestion/ingestion-client/Setup/ArmTemplateRealtime.json | jq .variables.Version)
version=$(cat ./samples/ingestion/ingestion-client/Setup/ArmTemplateBatch.json | jq -r .variables.Version)
versionRealtime=$(cat ./samples/ingestion/ingestion-client/Setup/ArmTemplateRealtime.json | jq -r .variables.Version)
echo ::set-output name=version::$version
echo "Batch template: ${version}"
echo ::set-output name=versionRealtime::$versionRealtime
Expand Down

0 comments on commit 638c083

Please sign in to comment.