Skip to content

Commit b61f1c3

Browse files
committed
Merge branch 'experimental' into dockerify
2 parents a3d04b0 + f1e2582 commit b61f1c3

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/docker-publish.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
jobs:
2424
build:
2525

26-
runs-on: warp-ubuntu-latest-x64-4x
26+
runs-on: ubuntu-latest
2727
permissions:
2828
contents: read
2929
packages: write
@@ -48,6 +48,10 @@ jobs:
4848
- name: Set up QEMU
4949
uses: docker/setup-qemu-action@v3
5050

51+
# Workaround: https://github.com/docker/build-push-action/issues/461
52+
- name: Setup Docker buildx
53+
uses: docker/setup-buildx-action@v3
54+
5155
# Login against a Docker registry except on PR
5256
# https://github.com/docker/login-action
5357
- name: Log into registry ${{ env.REGISTRY }}
@@ -66,11 +70,11 @@ jobs:
6670
with:
6771
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6872

69-
# Build and push Docker image with WarpBuild Docker builder
70-
# https://docs.warpbuild.com/ci/docker-builders
73+
# Build and push Docker image with Buildx (don't push on PR)
74+
# https://github.com/docker/build-push-action
7175
- name: Build and push Docker image
7276
id: build-and-push
73-
uses: Warpbuilds/build-push-action@v6
77+
uses: docker/build-push-action@v6
7478
with:
7579
context: .
7680
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)