Skip to content

Commit 51d73c4

Browse files
fix(docker): pass DOCKER_HUB_PASSWORD secret (#467)
1 parent 85b2e6b commit 51d73c4

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/__call-docker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ on:
3131
DOCKER_HUB_USERNAME:
3232
description: 'Docker Hub username to use for the workflow.'
3333
required: false
34+
DOCKER_HUB_PASSWORD:
35+
description: 'Docker Hub password to use for the workflow.'
36+
required: false
3437
DOCKER_HUB_ACCESS_TOKEN:
3538
description: 'Docker Hub access token to use for the workflow.'
3639
required: false

.github/workflows/_docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
if: ${{ github.repository != 'LizardByte/.github' }}
3333
secrets:
3434
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
35+
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }}
3536
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
3637
GH_BOT_NAME: ${{ secrets.GH_BOT_NAME }}
3738
GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }}

0 commit comments

Comments
 (0)