Skip to content

Commit 9e3c084

Browse files
committed
Fix actions
1 parent 3631415 commit 9e3c084

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/github-actions.yml

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: Publish Docker image
22

3-
on:
4-
release:
5-
types: [published]
3+
on: push
4+
5+
#on:
6+
# release:
7+
# types: [published]
68

79
jobs:
810
push_to_registry:
@@ -12,8 +14,14 @@ jobs:
1214
- name: Check out the repo
1315
uses: actions/checkout@v4
1416

17+
- name: Set up QEMU
18+
uses: docker/setup-qemu-action@v3
19+
20+
- name: Set up Docker Buildx
21+
uses: docker/setup-buildx-action@v3
22+
1523
- name: Log in to Docker Hub
16-
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
24+
uses: docker/login-action@v3
1725
with:
1826
username: ${{ secrets.DOCKER_USERNAME }}
1927
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -25,7 +33,7 @@ jobs:
2533
images: ihippik/wal-listener
2634

2735
- name: Build and push Docker image
28-
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
36+
uses: docker/build-push-action@v5
2937
with:
3038
context: .
3139
file: ./Dockerfile

0 commit comments

Comments
 (0)