From cff51a8be94eaf4944ecd09edb5320ee2800d493 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Mon, 7 Mar 2022 14:05:27 +0100 Subject: [PATCH] Update docker-build-push.yml --- .github/workflows/docker-build-push.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-build-push.yml b/.github/workflows/docker-build-push.yml index fe40fa78..7fdd340b 100644 --- a/.github/workflows/docker-build-push.yml +++ b/.github/workflows/docker-build-push.yml @@ -2,7 +2,8 @@ name: Build and Push to Docker Hub on: push: - branches: v3 + branches: + - 'v3' jobs: docker: @@ -23,7 +24,7 @@ jobs: with: context: . push: true - file: {{context}}/server/Dockerfile + file: server/Dockerfile tags: amruthpillai/reactive-resume:server-latest - name: Build and Push Client Docker Image @@ -31,5 +32,5 @@ jobs: with: context: . push: true - file: {{context}}/client/Dockerfile + file: client/Dockerfile tags: amruthpillai/reactive-resume:client-latest