Skip to content

Commit

Permalink
ci(release): fix DOCKERHUB_USERNAME
Browse files Browse the repository at this point in the history
  • Loading branch information
M0dEx committed Nov 18, 2024
1 parent 3590484 commit 061d483
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
- uses: docker/login-action@v3
name: Login to Docker Hub
with:
username: ${{ env.DOCKERHUB_USERNAME }}
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v6
name: Build and push
Expand All @@ -146,5 +146,5 @@ jobs:
build-args: |
FEATURES=crypto-${{ matrix.crypto }},jemalloc
tags: |
${{ env.DOCKERHUB_USERNAME }}/quincy:${{ startsWith(matrix.crypto, 'standard') && github.ref_name || format('{0}-{1}', github.ref_name, matrix.crypto) }}
${{ env.DOCKERHUB_USERNAME }}/quincy:${{ startsWith(matrix.crypto, 'standard') && 'latest' || format('latest-{0}', matrix.crypto) }}
${{ vars.DOCKERHUB_USERNAME }}/quincy:${{ startsWith(matrix.crypto, 'standard') && github.ref_name || format('{0}-{1}', github.ref_name, matrix.crypto) }}
${{ vars.DOCKERHUB_USERNAME }}/quincy:${{ startsWith(matrix.crypto, 'standard') && 'latest' || format('latest-{0}', matrix.crypto) }}

0 comments on commit 061d483

Please sign in to comment.