We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c7d1fd commit b0d9c65Copy full SHA for b0d9c65
.github/workflows/publish.yml
@@ -40,10 +40,14 @@ jobs:
40
- name: Build docker image
41
run: make docker-build
42
env:
43
+ # See: https://github.com/docker/buildx/issues/59
44
+ ACTION: push
45
DOCKER_BUILDKIT: 1
46
47
- name: Test docker image
48
run: make test
49
+ # Anyway the image is pushed ... because of the buildx issue
50
+ continue-on-error: true
51
52
53
COMPOSE_DOCKER_CLI_BUILD: 1
@@ -56,6 +60,8 @@ jobs:
56
60
# private-key: ${{ secrets.DOCKER_PRIVATE_KEY }}
57
61
# private-key-passphrase: ${{ secrets.DOCKER_PRIVATE_KEY_PASSPHRASE }}
58
62
63
+ - name: Pull multi-platform image pushed by Docker buildx
64
+ run: docker pull $IMAGE_TAG
59
65
- name: Push to GHCR
66
run: make docker-push
67
- name: Tag for GHCR
0 commit comments