From d16ab620865d5c39eba0f4298e570400041b7f51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 16 Sep 2019 22:59:41 +0200 Subject: [PATCH] Fix: Remove unopened quotes --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 43e7e70..ab0d39f 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -24,7 +24,7 @@ jobs: - name: "Docker Login" if: "'refs/heads/master' == github.ref || startsWith('refs/tags/', github.ref)" - run: echo ${{ secrets.DOCKER_PASSWORD }} | $(which docker) login --password-stdin --username ${{ secrets.DOCKER_USERNAME }}" + run: echo ${{ secrets.DOCKER_PASSWORD }} | $(which docker) login --password-stdin --username ${{ secrets.DOCKER_USERNAME }} - name: "Push Docker image (latest)" if: "'refs/heads/master' == github.ref || startsWith('refs/tags/', github.ref)"