diff --git a/.github/workflows/api-ee.yaml b/.github/workflows/api-ee.yaml index a6a3998cb..34997b348 100644 --- a/.github/workflows/api-ee.yaml +++ b/.github/workflows/api-ee.yaml @@ -67,7 +67,10 @@ jobs: } && { echo "Skipping Security Checks" } - docker push $DOCKER_REPO/$image:$IMAGE_TAG + images=("chalice" "alerts") + for image in ${images[*]};do + docker push $DOCKER_REPO/$image:$IMAGE_TAG + done - name: Creating old image input run: | # diff --git a/.github/workflows/api.yaml b/.github/workflows/api.yaml index e85775ed2..ec83c1c3c 100644 --- a/.github/workflows/api.yaml +++ b/.github/workflows/api.yaml @@ -66,7 +66,10 @@ jobs: } && { echo "Skipping Security Checks" } - docker push $DOCKER_REPO/$image:$IMAGE_TAG + images=("chalice" "alerts") + for image in ${images[*]};do + docker push $DOCKER_REPO/$image:$IMAGE_TAG + done - name: Creating old image input run: | # @@ -131,4 +134,4 @@ jobs: # DOCKER_REPO: ${{ secrets.OSS_REGISTRY_URL }} # IMAGE_TAG: ${{ github.sha }} # ENVIRONMENT: staging - # +