From 869255acfc4c83af3e8a82e15a6c65058f5a7492 Mon Sep 17 00:00:00 2001 From: Basma1912 Date: Thu, 12 Dec 2024 09:50:06 -0500 Subject: [PATCH] correct typos in the gihub action workflow step description Signed-off-by: Basma1912 --- .github/workflows/build-and-push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index ce157d444b8..cb9f9fddc4c 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -1,4 +1,4 @@ -name: Build, test and push a Docker image +name: Build and push a Docker image on: push: @@ -60,7 +60,7 @@ jobs: ref: ${{ env.REF_ID }} - id: dev_image_tag - name: Set Docker Stag image tag for updates of the DEV branch + name: Set Docker dev image tag for updates of the DEV branch if: github.ref == 'refs/heads/dev' run: | @@ -71,7 +71,7 @@ jobs: echo DEPLOYMENT_REALM=nonprod >> "$GITHUB_ENV" - id: stage_image_tag - name: Set Docker Stag image tag for updates of the main branch + name: Set Docker stage image tag for updates of the main branch if: github.ref == 'refs/heads/main' run: | @@ -82,7 +82,7 @@ jobs: echo DEPLOYMENT_REALM=nonprod >> "$GITHUB_ENV" - id: prod_image_tag - name: Set Docker image tag to the git tag for tagged builds + name: Set Docker prod image tag to the git tag for tagged builds if: startsWith(github.ref, 'refs/tags/') run: |