Skip to content

Commit

Permalink
Merge pull request #15 from mmorejon/workflows
Browse files Browse the repository at this point in the history
Fix dockerfile context path
  • Loading branch information
mmorejon authored Jan 17, 2021
2 parents 2ae5dd6 + 3673796 commit c49d721
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
push: true
context: ./users/
file: ./Dockerfile
file: ./users/Dockerfile
tags: |
mmorejon/${{ env.USERS_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
ghcr.io/mmorejon/${{ env.USERS_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
Expand All @@ -48,7 +48,7 @@ jobs:
with:
push: true
context: ./movies/
file: ./Dockerfile
file: ./movies/Dockerfile
tags: |
mmorejon/${{ env.MOVIES_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
ghcr.io/mmorejon/${{ env.MOVIES_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
Expand All @@ -57,7 +57,7 @@ jobs:
with:
push: true
context: ./showtimes/
file: ./Dockerfile
file: ./showtimes/Dockerfile
tags: |
mmorejon/${{ env.SHOWTIMES_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
ghcr.io/mmorejon/${{ env.SHOWTIMES_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
Expand All @@ -66,7 +66,7 @@ jobs:
with:
push: true
context: ./bookings/
file: ./Dockerfile
file: ./bookings/Dockerfile
tags: |
mmorejon/${{ env.BOOKINGS_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
ghcr.io/mmorejon/${{ env.BOOKINGS_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}

0 comments on commit c49d721

Please sign in to comment.