Browse Source
fix: syntax for docker username as env var
pull/32/head
Dikshant Adhikari
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
.github/workflows/publish.yml
|
|
@ -30,7 +30,7 @@ jobs: |
|
|
|
- name: Log into Docker Hub |
|
|
|
uses: docker/login-action@v1 |
|
|
|
with: |
|
|
|
username: secrets.DOCKERHUB_USERNAME |
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }} |
|
|
|
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} |
|
|
|
|
|
|
|
- name: Build and push Docker image |
|
|
|