From e0163feee03d1b18f90ec30f85fc899095020c8d Mon Sep 17 00:00:00 2001 From: Ryan Ahearn Date: Mon, 14 Nov 2022 11:08:25 -0500 Subject: [PATCH] Fix typo in working-directory action key name --- .github/actions/deploy-proxy/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/deploy-proxy/action.yml b/.github/actions/deploy-proxy/action.yml index c83efcef2..dd8415df2 100644 --- a/.github/actions/deploy-proxy/action.yml +++ b/.github/actions/deploy-proxy/action.yml @@ -31,12 +31,12 @@ runs: run: git clone ${{ inputs.proxy_repo }} ${{ steps.create-temp-dir.outputs.path }} - name: Switch to deploy ref shell: bash - working_directory: ${{ steps.create-temp-dir.outputs.path }} + working-directory: ${{ steps.create-temp-dir.outputs.path }} run: git checkout ${{ inputs.proxy_version }} - name: Copy config files shell: bash run: cp ./deploy-config/egress_proxy/${{ inputs.app }}.*.acl ${{ steps.create-temp-dir.outputs.path }} - name: Build and deploy proxy shell: bash - working_directory: ${{ steps.create-temp-dir.outputs.path }} + working-directory: ${{ steps.create-temp-dir.outputs.path }} run: make && ./bin/cf-deployproxy -a ${{ inputs.app }} -p egress-proxy -e egress_proxy