Skip to content

Commit

Permalink
Try to fix suffix being added to Alpine images
Browse files Browse the repository at this point in the history
  • Loading branch information
sweoggy authored Jun 16, 2023
1 parent 0e2338a commit 7feb60a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
flavor: |
latest=${{ matrix.stage == 'cli' }}
suffix=${{ matrix.docker-os == 'alpine' && '' || format('-{0}', matrix.docker-os) }},onlatest=${{ matrix.docker-os != 'alpine' }}
suffix=${{ matrix.docker-os != 'alpine' && format('-{0}', matrix.docker-os) || '' }},onlatest=${{ matrix.docker-os != 'alpine' }}
images: |
debricked/cli
ghcr.io/debricked/cli
Expand Down

0 comments on commit 7feb60a

Please sign in to comment.