From 26b446ab54f155fbd1c969242892d7eb07eb6723 Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Mon, 11 Mar 2024 19:47:33 +0100 Subject: [PATCH] fix docker build action context --- .github/workflows/auth-service-cd.yml | 2 +- .github/workflows/backend-cd.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auth-service-cd.yml b/.github/workflows/auth-service-cd.yml index e210044..206f9fb 100644 --- a/.github/workflows/auth-service-cd.yml +++ b/.github/workflows/auth-service-cd.yml @@ -26,7 +26,7 @@ jobs: uses: docker/build-push-action@v5 with: push: true - context: auth-service + context: "{{defaultContext}}:auth-service" tags: vcscsvcscs/gheritage-auth-service:latest deployment: name: Deploy to Kubernetes diff --git a/.github/workflows/backend-cd.yml b/.github/workflows/backend-cd.yml index fec1fd6..50a8e64 100644 --- a/.github/workflows/backend-cd.yml +++ b/.github/workflows/backend-cd.yml @@ -26,7 +26,7 @@ jobs: uses: docker/build-push-action@v5 with: push: true - context: backend + context: "{{defaultContext}}:backend" tags: vcscsvcscs/gheritage-backend-service:latest deployment: name: Deploy to Kubernetes