We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8fd5c3 commit e3dfdd0Copy full SHA for e3dfdd0
.github/workflows/main.yml
@@ -60,6 +60,12 @@ jobs:
60
username: ${{ github.actor }}
61
password: ${{ secrets.GITHUB_TOKEN }}
62
63
+ - name: Login to Dockerhub
64
+ uses: docker/login-action@v3
65
+ with:
66
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
67
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
68
+
69
- name: Build & push docker image
70
id: docker_build_and_push
71
uses: docker/build-push-action@v5
@@ -72,6 +78,8 @@ jobs:
72
78
tags: |
73
79
ghcr.io/kafbat/kafka-ui:${{ steps.build.outputs.version }}
74
80
ghcr.io/kafbat/kafka-ui:main
81
+ kafbat/kafka-ui:${{ steps.build.outputs.version }}
82
+ kafbat/kafka-ui:main
75
83
build-args: |
76
84
JAR_FILE=api-${{ steps.build.outputs.version }}.jar
77
85
cache-from: type=local,src=/tmp/.buildx-cache
0 commit comments