From ea373ba61e16f5b1f2018c181b5e58fdc77f4bc8 Mon Sep 17 00:00:00 2001 From: Alex Pickering Date: Fri, 28 Jun 2024 15:12:29 -0700 Subject: [PATCH] try fix push Signed-off-by: Alex Pickering --- .github/workflows/deploy-infra.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-infra.yaml b/.github/workflows/deploy-infra.yaml index 631d0547ae..9853fe0ab1 100644 --- a/.github/workflows/deploy-infra.yaml +++ b/.github/workflows/deploy-infra.yaml @@ -872,7 +872,7 @@ jobs: ${MY_INTERNAL_SENSOR_IMAGE_REPO}:${FALCON_SENSOR_IMAGE_TAG} ## push the images to your registry - docker push ${MY_INTERNAL_SENSOR_IMAGE_REPO}:${FALCON_SENSOR_IMAGE_TAG} + docker push ${ECR_REGISTRY}/${MY_INTERNAL_SENSOR_IMAGE_REPO}:${FALCON_SENSOR_IMAGE_TAG} # add the repository to your Helm client export REPO=crowdstrike/falcon-sensor @@ -890,6 +890,9 @@ jobs: else echo "CrowdStrike CID missing, skipping falcon sensor setup" fi + env: + ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} + report-if-failed: name: Report if workflow failed runs-on: ubuntu-20.04