Skip to content

Commit 5f0b650

Browse files
committed
#343 Create buildx instance & add more output
1 parent f0dee3c commit 5f0b650

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish-ghcr.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: docker/setup-buildx-action@v3
15+
- name: Set up Docker Buildx
16+
run: |
17+
docker buildx create --use
1518
- name: Build and push the image
1619
run: |
1720
docker login --username danielbrendel --password ${{ secrets.GH_CONTAINER_REGISTRY }} ghcr.io
18-
docker buildx build . --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag ghcr.io/danielbrendel/hortusfox-web:latest --tag ghcr.io/danielbrendel/hortusfox-web:${{ github.ref_name }} --push
21+
docker buildx build . --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag ghcr.io/danielbrendel/hortusfox-web:latest --tag ghcr.io/danielbrendel/hortusfox-web:${{ github.ref_name }} --push --progress=plain

0 commit comments

Comments
 (0)