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