Skip to content

Commit

Permalink
testing 12
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonSmith committed Jun 12, 2024
1 parent ddfb2d7 commit a841f23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker_push_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:

- name: Build Docker image
run: |
docker build -t ${{ steps.meta.outputs.tags }} -f ./src/backend/Dockerfile .
docker build -t ${{ env.IMAGE_NAME }}:${{ github.ref }} -f ./src/backend/Dockerfile .
- name: Tag Docker image
run: |
docker tag ${{ env.IMAGE_NAME }} ${{ steps.meta.outputs.tags }}
docker tag ${{ env.IMAGE_NAME }} ${{ vars.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref }}
- name: Push Docker image
env:
THE_TAGS: ${{ steps.meta.outputs.tags }}
run: |
docker push ${{ steps.meta.outputs.tags }}
docker push ${{ vars.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref }}

0 comments on commit a841f23

Please sign in to comment.