From a98f2b3277f0486e83e1b2b7ebea519c066efd11 Mon Sep 17 00:00:00 2001 From: Martin Buchleitner Date: Wed, 10 Jan 2024 08:07:38 +0100 Subject: [PATCH] correct path on gh action Signed-off-by: Martin Buchleitner --- .github/workflows/containers.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/containers.yaml b/.github/workflows/containers.yaml index 1b89b6f..81b8042 100644 --- a/.github/workflows/containers.yaml +++ b/.github/workflows/containers.yaml @@ -1,4 +1,4 @@ -name: Infralovers Container Build +name: Infralovers Container Build - dapr-distributed-calendar on: push: @@ -81,9 +81,8 @@ jobs: uses: docker/build-push-action@v2 with: builder: ${{ steps.buildx.outputs.name }} - context: ${{ matrix.container }} - file: ./Dockerfile + context: ./dapr-distributed-calendar/${{ matrix.container }} + # file: ./Dockerfile push: ${{ github.event_name != 'pull_request' && needs.prebuild.outputs.version != '' }} tags: ${{ steps.prep.outputs.tags }} platforms: 'arm64,amd64' -