diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-08-06 10:43:58 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-06 10:43:58 +0530 |
commit | bccd2f2378c8cbc252f88e9e3ae566228308812a (patch) | |
tree | 25870525533e1a8149dfe714c02be9deaf0d4fa0 /.github/workflows/action.yml | |
parent | f733a137b278026f2522fc0f50e4eca63f8ea96e (diff) |
Update action.yml
Diffstat (limited to '.github/workflows/action.yml')
-rw-r--r-- | .github/workflows/action.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index efe383c..c4b1a35 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -39,8 +39,8 @@ jobs: name: Docker Login if: success() && github.event_name != 'pull_request' env: - DOCKER_USERNAME: ${{ DOCKER_HUB_USER }} - DOCKER_PASSWORD: ${{ DOCKER_HUB_TOKEN }} + DOCKER_USERNAME: ${{ secrets.DOCKER_HUB_USER }} + DOCKER_PASSWORD: ${{ secrets.DOCKER_HUB_TOKEN }} run: | echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin - |