From d37692d634b4aeddb3212de5908b7fd2610c9584 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Thu, 19 Oct 2023 09:04:42 +0200 Subject: [PATCH] fix quoting Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --- .github/actions/self_managed_create/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/self_managed_create/action.yml b/.github/actions/self_managed_create/action.yml index 399e5867be..ec4652ce12 100644 --- a/.github/actions/self_managed_create/action.yml +++ b/.github/actions/self_managed_create/action.yml @@ -87,5 +87,5 @@ runs: run : | touch ${{ github.workspace }}/constellation-state.yaml yq eval '.version ="v1"' --inplace ${{ github.workspace }}/constellation-state.yaml - yq eval '.infrastructure.initSecret ="$(terraform output initSecret | jq -r | tr -d '\n' | base64)"' --inplace ${{ github.workspace }}/constellation-state.yaml - yq eval '.infrastructure.clusterEndpoint ="$(terraform output ip)"' --inplace ${{ github.workspace }}/constellation-state.yaml + yq eval ".infrastructure.initSecret =\"$(terraform output initSecret | jq -r | tr -d '\n' | base64)\"" --inplace ${{ github.workspace }}/constellation-state.yaml + yq eval ".infrastructure.clusterEndpoint =\"$(terraform output ip)\"" --inplace ${{ github.workspace }}/constellation-state.yaml