Skip to content

Commit 3899e70

Browse files
authored
fix(ci): release docker image (#157)
Signed-off-by: ashing <[email protected]>
1 parent 27f6faf commit 3899e70

File tree

2 files changed

+25
-222
lines changed

2 files changed

+25
-222
lines changed

.github/workflows/push-docker.yaml

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,40 @@
11
name: push on dockerhub
22
on:
3-
release:
4-
types: [published]
3+
push:
4+
tags:
5+
- '*'
56

67
jobs:
78
docker:
8-
runs-on: ubuntu-20.04
9+
runs-on: buildjet-2vcpu-ubuntu-2204
910
steps:
10-
-
11-
name: Checkout
12-
uses: actions/checkout@v3
11+
- name: Checkout
12+
uses: actions/checkout@v4
1313
with:
14-
ref: ${{ github.ref }} # Use the reference to the release
15-
-
16-
name: Set up QEMU
14+
ref: ${{ github.ref }}
15+
submodules: recursive
16+
- name: Setup Go Env
17+
uses: actions/setup-go@v4
18+
with:
19+
go-version: "1.22"
20+
21+
- name: Set up QEMU
1722
uses: docker/setup-qemu-action@v3
18-
-
19-
name: Set up Docker Buildx
23+
24+
- name: Set up Docker Buildx
2025
uses: docker/setup-buildx-action@v3
21-
-
22-
name: Login to Docker Hub
26+
27+
- name: Login to Registry
2328
uses: docker/login-action@v3
2429
with:
2530
registry: ${{ secrets.DOCKER_REGISTRY }}
2631
username: ${{ secrets.DOCKER_USERNAME }}
2732
password: ${{ secrets.DOCKER_PASSWORD }}
2833
-
29-
name: Build and push
30-
uses: docker/build-push-action@v5
31-
with:
32-
context: .
33-
platforms: linux/amd64,linux/arm64
34-
push: true
35-
tags: '${{ github.event.release.tag_name }}' # Use the release tag as the image tag
34+
name: Build and push multi-arch image
35+
env:
36+
TAG: ${{ github.ref_name }}
37+
IMAGE_TAG: ${{ github.ref_name }}
38+
run: |
39+
echo "building multi-arch images with tag: $TAG"
40+
make build-push-multi-arch-image

0 commit comments

Comments
 (0)