Skip to content

Commit b0d9c65

Browse files
committed
Fix publish workflow
1 parent 5c7d1fd commit b0d9c65

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,14 @@ jobs:
4040
- name: Build docker image
4141
run: make docker-build
4242
env:
43+
# See: https://github.com/docker/buildx/issues/59
44+
ACTION: push
4345
DOCKER_BUILDKIT: 1
4446

4547
- name: Test docker image
4648
run: make test
49+
# Anyway the image is pushed ... because of the buildx issue
50+
continue-on-error: true
4751
env:
4852
DOCKER_BUILDKIT: 1
4953
COMPOSE_DOCKER_CLI_BUILD: 1
@@ -56,6 +60,8 @@ jobs:
5660
# private-key: ${{ secrets.DOCKER_PRIVATE_KEY }}
5761
# private-key-passphrase: ${{ secrets.DOCKER_PRIVATE_KEY_PASSPHRASE }}
5862

63+
- name: Pull multi-platform image pushed by Docker buildx
64+
run: docker pull $IMAGE_TAG
5965
- name: Push to GHCR
6066
run: make docker-push
6167
- name: Tag for GHCR

0 commit comments

Comments
 (0)