Skip to content

Commit 2eb6206

Browse files
authored
Update docker-publish.yml read user and pw from env
1 parent d856fa5 commit 2eb6206

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- name: Log in to Docker Hub
3434
uses: docker/login-action@v2
3535
with:
36-
username: ${{ secrets.DOCKER_USERNAME }}
37-
password: ${{ secrets.DOCKER_PASSWORD }}
36+
username: ${{ env.DOCKER_USERNAME }}
37+
password: ${{ env.DOCKER_PASSWORD }}
3838

3939
- name: Build and push Docker image
4040
working-directory: flink-dockerfile-example

0 commit comments

Comments
 (0)