You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by zh...@apache.org on 2023/02/24 09:13:43 UTC

[incubator-devlake] branch main updated: fix: can not build and push devlake image (#4516)

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

zhangliang2022 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new 4024f7c06 fix: can not build and push devlake image (#4516)
4024f7c06 is described below

commit 4024f7c0661e7cc2ec2138a565421632e3c43b86
Author: abeizn <zi...@merico.dev>
AuthorDate: Fri Feb 24 17:13:38 2023 +0800

    fix: can not build and push devlake image (#4516)
    
    * fix: can not build and push devlake image
    
    * fix: can not build and push devlake image
---
 .github/workflows/build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index fd873527c..2196a8269 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -45,7 +45,7 @@ jobs:
           push: true
           target: builder
           tags: ${{ secrets.DOCKERHUB_OWNER }}/devlake:amd64-builder
-          dockerfile: ./backend/Dockerfile
+          file: ./backend/Dockerfile
           platforms: linux/amd64
           cache-from: ${{ secrets.DOCKERHUB_OWNER }}/devlake:amd64-builder
           cache-to: ${{ secrets.DOCKERHUB_OWNER }}/devlake:amd64-builder
@@ -70,7 +70,7 @@ jobs:
           push: true
           target: base
           tags: ${{ secrets.DOCKERHUB_OWNER }}/devlake:base
-          dockerfile: ./backend/Dockerfile
+          file: ./backend/Dockerfile
           platforms: linux/amd64,linux/arm64
           cache-from: ${{ secrets.DOCKERHUB_OWNER }}/devlake:base
           cache-to: ${{ secrets.DOCKERHUB_OWNER }}/devlake:base