From 3673796417c0bde858602f9e67a16e051cdfde62 Mon Sep 17 00:00:00 2001 From: Manuel Morejon Date: Sun, 17 Jan 2021 19:57:19 +0100 Subject: [PATCH] Fix dockerfile context path --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da0447eff..1eefc0781 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} @@ -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 }} @@ -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 }} @@ -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 }} \ No newline at end of file