From ee218e899fcf6b1fe57619b71cd76d3fadc55d60 Mon Sep 17 00:00:00 2001 From: Rio Knightley Date: Mon, 9 Sep 2024 11:10:23 +0100 Subject: [PATCH] Fix script path for cloudfront --- .github/workflows/cleanup-cloudfront-edge-associations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cleanup-cloudfront-edge-associations.yml b/.github/workflows/cleanup-cloudfront-edge-associations.yml index f62514b9..04f375ef 100644 --- a/.github/workflows/cleanup-cloudfront-edge-associations.yml +++ b/.github/workflows/cleanup-cloudfront-edge-associations.yml @@ -85,7 +85,7 @@ jobs: ./venv/bin/pip3 install --upgrade pip boto3==1.33.11 - name: Remove Lambda@Edge & CloudFront Associations - run: ./venv/bin/python3 -u scripts/remove_edge_associations.py ${{ inputs.sandbox_workspace }} + run: ./venv/bin/python3 -u ../scripts/remove_edge_associations.py ${{ inputs.sandbox_workspace }} env: DISTRIBUTION_ID: ${{ env.DISTRIBUTION_ID }} LAMBDA_FUNCTION_NAME: ${{ inputs.lambda_function_name }}