From dd09ae6c0032433f698f398cd8349c9f1f0f1fe7 Mon Sep 17 00:00:00 2001 From: Berry Davenport Date: Fri, 19 Jan 2024 13:27:51 -0500 Subject: [PATCH] Remove error condition --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5bfa5a371e..487568daa5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -211,7 +211,7 @@ jobs: echo "IPSET_ID=$IPSET_ID" >> $GITHUB_OUTPUT - name: Update IP Set id: update-ip-set - run: ./.github/waf-controller.sh ${{ steps.fetch-ip-set-info.outputs.IPSET_NAME }} ${{ steps.fetch-ip-set-info.outputs.IPSET_ID }} ${{ steps.get-gha-cidrs.outputs.GHA_CIDRS_IPV4 }} + run: ./.github/waf-controller.sh set ${{ steps.fetch-ip-set-info.outputs.IPSET_NAME }} ${{ steps.fetch-ip-set-info.outputs.IPSET_ID }} ${{ steps.get-gha-cidrs.outputs.GHA_CIDRS_IPV4 }} env: AWS_RETRY_MODE: adaptive AWS_MAX_ATTEMPTS: 10 @@ -363,7 +363,7 @@ jobs: aws-region: ${{ secrets[env.BRANCH_SPECIFIC_VARNAME_AWS_DEFAULT_REGION] || secrets.AWS_DEFAULT_REGION }} - name: clean-up-iplist id: reset-ip-set - run: ./.github/waf-controller.sh ${{ needs.e2e-tests-init.outputs.ipset_name }} ${{ needs.e2e-tests-init.outputs.ipset_id }} '[]' + run: ./.github/waf-controller.sh set ${{ needs.e2e-tests-init.outputs.ipset_name }} ${{ needs.e2e-tests-init.outputs.ipset_id }} '[]' env: AWS_RETRY_MODE: adaptive AWS_MAX_ATTEMPTS: 10