From fc67e857009fdd6c1bcc0753c41a4f6933483f08 Mon Sep 17 00:00:00 2001 From: Vucomir Ianculov Date: Fri, 23 Jan 2026 14:25:39 +0200 Subject: [PATCH] fix: fixed docker build context --- .github/workflows/docker-build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index 8da327d..d9ba0ff 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -44,10 +44,10 @@ on: aws_account_id: required: true type: string - git_context: + context: required: false type: string - default: . + default: "." docker_file_path: required: false type: string @@ -181,7 +181,7 @@ jobs: if: ${{ env.DOCKER_TAG != '' }} uses: docker/build-push-action@v6 with: - context: "{{defaultContext}}:${{ inputs.git_context }}" + context: ${{ inputs.context }} push: true tags: ${{ env.DOCKER_TAG }} provenance: false