You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ma...@apache.org on 2022/10/14 00:14:02 UTC

[camel-karavan] branch main updated: Fix build and push operator workflow

This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


The following commit(s) were added to refs/heads/main by this push:
     new 09c7d3b  Fix build and push operator workflow
09c7d3b is described below

commit 09c7d3b954821f97c5c25965e61e86cf08ee0cd7
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Thu Oct 13 20:13:54 2022 -0400

    Fix build and push operator workflow
---
 .github/workflows/operator.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/operator.yml b/.github/workflows/operator.yml
index 433dc9c..a0dcf64 100644
--- a/.github/workflows/operator.yml
+++ b/.github/workflows/operator.yml
@@ -53,6 +53,6 @@ jobs:
         run: |
           MY_BUNDLE_IMAGE=${{ env.REGISTRY }}/${{ env.IMAGE_NAME_BUNDLE }}:${{ env.TAG }}
           docker login -u=${{ github.actor }} -p=${{ secrets.GITHUB_TOKEN }} ${{ env.REGISTRY }}
-          docker build -t $MY_BUNDLE_IMAGE -f target/bundle/bundle.Dockerfile target/bundle
+          docker build -t $MY_BUNDLE_IMAGE -f karavan-operator/target/bundle/bundle.Dockerfile karavan-operator/target/bundle
           docker push $MY_BUNDLE_IMAGE
         if: ${{ github.ref == 'refs/heads/main' }}
\ No newline at end of file