Skip to content

Commit

Permalink
Merge pull request #6409 from mozilla/fix_typo_in_build_workflow
Browse files Browse the repository at this point in the history
correct typos in the gihub action workflow step description
  • Loading branch information
Basma1912 authored Dec 12, 2024
2 parents 7fb9fd6 + 869255a commit 9f43a15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build, test and push a Docker image
name: Build and push a Docker image

on:
push:
Expand Down Expand Up @@ -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: |
Expand All @@ -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: |
Expand All @@ -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: |
Expand Down

0 comments on commit 9f43a15

Please sign in to comment.