Skip to content

Commit 7368a4e

Browse files
fix(docker-build): secrets (#2)
1 parent ce14971 commit 7368a4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ jobs:
6969
- name: Login to Docker Hub
7070
uses: docker/login-action@v3
7171
with:
72-
username: ${{ inputs.dockerhub-username }}
73-
password: ${{ inputs.dockerhub-pat }}
72+
username: ${{ secrets.DOCKERHUB_USERNAME }}
73+
password: ${{ secrets.DOCKERHUB_PAT }}
7474

7575
- name: Set up QEMU
7676
uses: docker/setup-qemu-action@v3

0 commit comments

Comments
 (0)