Browse Source

fix: syntax for docker username as env var

pull/32/head
Dikshant Adhikari 3 years ago
committed by GitHub
parent
commit
eeb721c581
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/publish.yml

2
.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

Loading…
Cancel
Save