From e3323b286a92f104b5d64b9942210838eaa60654 Mon Sep 17 00:00:00 2001 From: Santanu Sinha Date: Fri, 21 Jun 2024 09:04:36 +0530 Subject: [PATCH] Trying context for docker 2 --- .github/workflows/release.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a106bdbf..97721d4a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,20 +48,18 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image for executor - uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 - context: drove-executor + uses: docker/build-push-action@v6 with: - context: docker + context: drove-executor push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: VERSION=${{ steps.meta.outputs.tags }} - name: Build and push Docker image for controller - uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 - context: drove-controller + uses: docker/build-push-action@v6 with: - context: docker + context: drove-executor push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}