Skip to content

Commit

Permalink
fix failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
egladman committed Aug 4, 2022
1 parent 25b6fbf commit 1670f38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ jobs:

- name: Build/Push image
run: |
make push IMG_VERSION= .BUILD_JQ_GIT_TAG=HEAD BUILDX_ENABLED=false LATEST_ENABLED=false IMG_REPOSITORY=${{ matrix.repository }} IMG_REPOSITORY_PREFIX=${{ matrix.registry }}
make push IMG_VERSION= .BUILD_JQ_GIT_TAG=HEAD BUILDX_ENABLED=false LATEST_ENABLED=false IMG_REPOSITORY=${{ matrix.repository }} IMG_REPOSITORY_PREFIX=${{ matrix.registry }} IMG_VARIANT=busybox
make push IMG_VERSION= .BUILD_JQ_GIT_TAG=HEAD LATEST_ENABLED=false IMG_REPOSITORY=${{ matrix.repository }} IMG_REPOSITORY_PREFIX=${{ matrix.registry }}
make push IMG_VERSION= .BUILD_JQ_GIT_TAG=HEAD LATEST_ENABLED=false IMG_REPOSITORY=${{ matrix.repository }} IMG_REPOSITORY_PREFIX=${{ matrix.registry }} IMG_VARIANT=busybox
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ push:
ifeq ($(BUILDX_ENABLED),true)
$(MAKE) DOCKER_BUILD_FLAGS+="--push"
else
$(DOCKER) push $(IMG_REPOSITORY) $(IMG_NAMES)
@for i in $(IMG_NAMES); do \
$(DOCKER) push $$i; \
done
endif

#@ help : This text
Expand Down

0 comments on commit 1670f38

Please sign in to comment.