From affdb8e5d8c0f297ae674ff8559b724678d18f61 Mon Sep 17 00:00:00 2001 From: Alex Pickering Date: Fri, 28 Jun 2024 15:18:29 -0700 Subject: [PATCH] try fix push Signed-off-by: Alex Pickering --- .github/workflows/deploy-infra.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-infra.yaml b/.github/workflows/deploy-infra.yaml index 9853fe0ab1..4627d27556 100644 --- a/.github/workflows/deploy-infra.yaml +++ b/.github/workflows/deploy-infra.yaml @@ -854,7 +854,7 @@ jobs: # Push Container Images to Private Registry # Configure your container registry - export MY_INTERNAL_CONTAINER_REGISTRY=falcon-sensor + export MY_INTERNAL_CONTAINER_REGISTRY="${ECR_REGISTRY}/falcon-sensor" # Configure your sensor repo export MY_INTERNAL_SENSOR_IMAGE_REPO="${MY_INTERNAL_CONTAINER_REGISTRY}/${SENSORTYPE}" @@ -871,8 +871,9 @@ jobs: docker tag ${FALCON_SENSOR_IMAGE_REPO}:${FALCON_SENSOR_IMAGE_TAG} \ ${MY_INTERNAL_SENSOR_IMAGE_REPO}:${FALCON_SENSOR_IMAGE_TAG} + docker login ## push the images to your registry - docker push ${ECR_REGISTRY}/${MY_INTERNAL_SENSOR_IMAGE_REPO}:${FALCON_SENSOR_IMAGE_TAG} + docker push ${MY_INTERNAL_SENSOR_IMAGE_REPO}:${FALCON_SENSOR_IMAGE_TAG} # add the repository to your Helm client export REPO=crowdstrike/falcon-sensor