Skip to content

Commit 716c25d

Browse files
committed
Include website image in the workflow
1 parent 3ed06ca commit 716c25d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/release.yml

+10
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ env:
1010
MOVIES_IMAGE_NAME: "cinema-movies"
1111
SHOWTIMES_IMAGE_NAME: "cinema-showtimes"
1212
BOOKINGS_IMAGE_NAME: "cinema-bookings"
13+
WEBSITE_IMAGE_NAME: "cinema-website"
1314

1415
jobs:
1516
multi-registries:
@@ -43,6 +44,15 @@ jobs:
4344
tags: |
4445
mmorejon/${{ env.USERS_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
4546
ghcr.io/mmorejon/${{ env.USERS_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
47+
- name: Build and push website microservice
48+
uses: docker/build-push-action@v2
49+
with:
50+
push: true
51+
context: ./website/
52+
file: ./website/Dockerfile
53+
tags: |
54+
mmorejon/${{ env.WEBSITE_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
55+
ghcr.io/mmorejon/${{ env.WEBSITE_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}
4656
- name: Build and push movies microservice
4757
uses: docker/build-push-action@v2
4858
with:

0 commit comments

Comments
 (0)