From 6e052ca15609bdf3d9e71958146ffd9c34801183 Mon Sep 17 00:00:00 2001 From: Sebastian Florek Date: Sat, 20 Jun 2020 12:25:23 +0200 Subject: [PATCH] Update cd-workflow.yml --- .github/workflows/cd-workflow.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/cd-workflow.yml b/.github/workflows/cd-workflow.yml index 026d303ee..91c101d41 100644 --- a/.github/workflows/cd-workflow.yml +++ b/.github/workflows/cd-workflow.yml @@ -40,7 +40,6 @@ jobs: env: cache-name: cache-node-modules with: - # npm cache files are stored in `~/.npm` on Linux/macOS path: node_modules key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} restore-keys: | @@ -97,7 +96,6 @@ jobs: env: cache-name: cache-node-modules with: - # npm cache files are stored in `~/.npm` on Linux/macOS path: node_modules key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} restore-keys: | @@ -114,7 +112,7 @@ jobs: env: DOCKER_USER: ${{ secrets.DOCKER_RELEASE_USER }} DOCKER_PASS: ${{ secrets.DOCKER_RELEASE_PASS }} - run: docker login -u $DOCKER_RELEASE_USER -p $DOCKER_RELEASE_PASS + run: docker login -u $DOCKER_USER -p $DOCKER_PASS - name: Push Image shell: bash -- GitLab