Skip to content

Commit dc99fff

Browse files
nddipiazzaCopilot
andauthored
TIKA-4703: Fix Docker Hub secret name DOCKERHUB_USERNAME -> DOCKERHUB_USER (#2781)
The Apache Tika Docker Hub org secret is named DOCKERHUB_USER, not DOCKERHUB_USERNAME. Fix all three occurrences across docker-snapshot.yml and docker-release.yml so the login step can authenticate successfully. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c0d5296 commit dc99fff

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Login to Docker Hub
4646
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
4747
with:
48-
username: ${{ secrets.DOCKERHUB_USERNAME }}
48+
username: ${{ secrets.DOCKERHUB_USER }}
4949
password: ${{ secrets.DOCKERHUB_TOKEN }}
5050

5151
- name: Build and push tika-server minimal
@@ -104,7 +104,7 @@ jobs:
104104
- name: Login to Docker Hub
105105
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
106106
with:
107-
username: ${{ secrets.DOCKERHUB_USERNAME }}
107+
username: ${{ secrets.DOCKERHUB_USER }}
108108
password: ${{ secrets.DOCKERHUB_TOKEN }}
109109

110110
- name: Prepare tika-grpc Docker build context

.github/workflows/docker-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Login to Docker Hub
5858
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
5959
with:
60-
username: ${{ secrets.DOCKERHUB_USERNAME }}
60+
username: ${{ secrets.DOCKERHUB_USER }}
6161
password: ${{ secrets.DOCKERHUB_TOKEN }}
6262

6363
# --- tika-server (minimal) ---

0 commit comments

Comments
 (0)