From c178a3e77efe1eab735734d69fc5ddad51a9c524 Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Fri, 4 Oct 2024 15:16:16 -0400 Subject: [PATCH] Add one more potentially missing step This changeset adds one more step that hopefully takes care of the egress proxy deploy. Signed-off-by: Carlo Costino --- .github/actions/deploy-proxy/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/deploy-proxy/action.yml b/.github/actions/deploy-proxy/action.yml index aefd3234bb..339d1fc780 100644 --- a/.github/actions/deploy-proxy/action.yml +++ b/.github/actions/deploy-proxy/action.yml @@ -26,6 +26,9 @@ runs: run: | cf api api.fr.cloud.gov cf auth + - name: Target org and space + shell: bash + run: cf target -o ${{ inputs.cf_org }} -s ${{ inputs.cf_space }} - name: Set restricted space egress shell: bash run: ./terraform/set_space_egress.sh -t -s ${{ inputs.cf_space }}