Skip to content

Commit

Permalink
tag variable
Browse files Browse the repository at this point in the history
  • Loading branch information
rezachalak committed Aug 18, 2023
1 parent 15c0345 commit e6581f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-images-with-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ jobs:
context: ./docker/pg
file: ./docker/pg/Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/pg:$GITHUB_REF_NAME
tags: ${{ secrets.DOCKERHUB_USERNAME }}/pg:${{ github.ref_name }}
-
name: Build and push MongoDB-Backup-Zen
uses: docker/build-push-action@v4
with:
context: ./docker/mongo
file: ./docker/mongo/Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/mongo:$GITHUB_REF_NAME
tags: ${{ secrets.DOCKERHUB_USERNAME }}/mongo:${{ github.ref_name }}
-
name: Build and push MySQL-Backup-Zen
uses: docker/build-push-action@v4
with:
context: ./docker/mysql
file: ./docker/mysql/Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/mysql:$GITHUB_REF_NAME
tags: ${{ secrets.DOCKERHUB_USERNAME }}/mysql:${{ github.ref_name }}

0 comments on commit e6581f0

Please sign in to comment.