Skip to content

Commit 7e5fce2

Browse files
committed
v2.5.0a11
1 parent 0017e8a commit 7e5fce2

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/docker-images.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Build Docker Images
22

33
on:
4-
release:
5-
types: [published]
4+
push:
5+
branches:
6+
- main
67

78
permissions:
89
contents: read
@@ -13,16 +14,20 @@ jobs:
1314

1415
steps:
1516
- name: Checkout
16-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
18+
1719
- name: Set up QEMU
1820
uses: docker/setup-qemu-action@v3
21+
1922
- name: Set up Docker Buildx
2023
uses: docker/setup-buildx-action@v3
24+
2125
- name: Docker Login
2226
uses: docker/login-action@v3
2327
with:
2428
username: ${{ secrets.DOCKERHUB_USERNAME }}
2529
password: ${{ secrets.DOCKERHUB_TOKEN }}
30+
2631
- name: Build and push
2732
uses: docker/build-push-action@v5
2833
with:

0 commit comments

Comments
 (0)