Skip to content

Commit

Permalink
test28
Browse files Browse the repository at this point in the history
  • Loading branch information
gmontalvoy authored Dec 7, 2023
1 parent 413b2d1 commit 8d8e294
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
Expand All @@ -39,7 +40,7 @@ jobs:
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: '${{ github.sha }}-dev'
tags: ${{ github.sha }}-dev
registry: ${{ env.REGISTRY }}/${{ env.ORG }}
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
Expand Down Expand Up @@ -80,8 +81,8 @@ jobs:
- name: Push to Prod
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ env.APP_NAME }}
tags: '${{ github.sha }}-prod'
image: ${{ env.REGISTRY }}/${{ env.ORG }}/${{ env.APP_NAME }}
tags: ${{ github.sha }}-prod
registry: ${{ env.REGISTRY }}/${{ env.ORG }}
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
Expand Down

0 comments on commit 8d8e294

Please sign in to comment.