Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
ci: fix login to docker by using single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin de Rooij committed May 13, 2021
1 parent adf5517 commit 5195da8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Log into Docker Container Registry
if: github.event_name != 'pull_request' && (contains(github.ref, 'tag') || contains(github.ref, 'master'))
run: echo "${{ secrets.DOCKER_PASS }}" | docker login -u terminusdb --password-stdin
run: echo '${{ secrets.DOCKER_PASS }}' | docker login -u terminusdb --password-stdin

- name: Push to the Docker registry
if: github.event_name != 'pull_request' && (contains(github.ref, 'tag') || contains(github.ref, 'master'))
Expand Down

0 comments on commit 5195da8

Please sign in to comment.