Skip to content

Commit

Permalink
fix(ci): adjust the secret environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchic committed Jan 3, 2022
1 parent 7a01d46 commit ca952a0
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 @@ -38,7 +38,7 @@ jobs:
id: meta
uses: crazy-max/ghaction-docker-meta@v3
with:
images: hutchic/template-docker
images: $GITHUB_REPOSITORY
tags: |
type=semver,pattern={{version}},value=${{ steps.release.outputs.release-version }}
type=ref,event=branch
Expand All @@ -47,8 +47,8 @@ jobs:
if: steps['release']['outputs']['published'] == 'true'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build & Push
if: steps['release']['outputs']['published'] == 'true'
uses: docker/bake-action@v1
Expand Down

0 comments on commit ca952a0

Please sign in to comment.