We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57bbb8b commit cbbcd36Copy full SHA for cbbcd36
.github/workflows/release.yaml
@@ -78,6 +78,14 @@ jobs:
78
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
79
sep-tags: ","
80
81
+ # Login to Docker Hub to avoid image pull ratelimit failures on build step
82
+ # https://github.com/docker/login-action
83
+ - name: Login to Docker Hub
84
+ uses: docker/login-action@3d58c274f17dffee475a5520cbe67f0a882c4dbb # v2.1.0
85
+ with:
86
+ username: ${{ secrets.GHA_DOCKERHUB_PUSH_USER }}
87
+ password: ${{ secrets.GHA_KONG_ORG_DOCKERHUB_PUSH_TOKEN }}
88
+
89
# Build Docker image with Buildx (don't push on PR)
90
# https://github.com/docker/build-push-action
91
- name: Build Docker image
0 commit comments