Skip to content

Commit

Permalink
fix: missing docker auth (#5522)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Feb 19, 2020
1 parent cd62f1e commit 6e6e367
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ jobs:
with:
version: v0.3.1

- name: Docker registry login
run: echo "${{ secrets.DOCKER_RENOVATERELEASE_TOKEN }}" | docker login -u renovaterelease --password-stdin

- name: Build the full Docker image
run: |
docker buildx build \
Expand All @@ -101,9 +104,6 @@ jobs:
--tag=${DOCKER_REPO}:slim \
--file=./Dockerfile.slim .
- name: Docker registry login
run: echo "${{ secrets.DOCKER_RENOVATERELEASE_TOKEN }}" | docker login -u renovaterelease --password-stdin

- run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 6e6e367

Please sign in to comment.