From 642e11021468e2779c3f952d141dcb048eb9bcef Mon Sep 17 00:00:00 2001 From: Rajpal Chauhan Date: Wed, 17 Jan 2024 14:48:00 -0800 Subject: [PATCH] test Signed-off-by: Rajpal Chauhan --- .github/workflows/actions/deploy/action.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions/deploy/action.yaml b/.github/workflows/actions/deploy/action.yaml index fca170ea..91f8cc05 100644 --- a/.github/workflows/actions/deploy/action.yaml +++ b/.github/workflows/actions/deploy/action.yaml @@ -19,6 +19,9 @@ inputs: openshift_image_name: description: The name of the image to use when pushing to OpenShift. required: true + service: + description: The name of images used + required: true # OpenShift parameters openshift_server_url: @@ -69,7 +72,7 @@ runs: run: | docker pull ${{ inputs.github_image_name }}@${{ inputs.image_digest }} docker tag ${{ inputs.github_image_name }}@${{ inputs.image_digest }} ${{ inputs.github_image_name }}:${{ inputs.environment }} - docker push ${{ inputs.github_image_name }} ${{ matrix.service }}:${{ inputs.environment }} + docker push ${{ inputs.github_image_name }}${{ inputs.matrix_service }}:${{ inputs.environment }} - name: Tag the image in the OpenShift container registry as ${{ inputs.environment }} shell: bash