Skip to content

Commit

Permalink
change context
Browse files Browse the repository at this point in the history
  • Loading branch information
UnicoYal committed Dec 10, 2024
1 parent 9f67098 commit 9ec9db2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
if: steps.check_user_service.outputs.changed == 'true'
uses: docker/build-push-action@v4
with:
context: ./user_service
context: .
file: ./user_service/Dockerfile
push: true
tags: unicoyal/user-service:latest
Expand All @@ -116,7 +116,7 @@ jobs:
if: steps.check_movie_service.outputs.changed == 'true'
uses: docker/build-push-action@v4
with:
context: ./movie_service
context: .
file: ./movie_service/Dockerfile
push: true
tags: unicoyal/movie-service:latest
Expand All @@ -126,7 +126,7 @@ jobs:
if: steps.check_payment_service.outputs.changed == 'true'
uses: docker/build-push-action@v4
with:
context: ./payment_service
context: .
file: ./payment_service/Dockerfile
push: true
tags: unicoyal/payment-service:latest
Expand All @@ -136,7 +136,7 @@ jobs:
if: steps.check_auth_service.outputs.changed == 'true'
uses: docker/build-push-action@v4
with:
context: ./auth_service
context: .
file: ./auth_service/Dockerfile
push: true
tags: unicoyal/auth-service:latest

0 comments on commit 9ec9db2

Please sign in to comment.