Skip to content

Commit 8256419

Browse files
author
Alec Thomson
committed
Fix
1 parent deb70ff commit 8256419

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,14 @@ jobs:
3030
id: tag_suffix
3131
run: |
3232
if [[ "${{ github.event_name }}" == "release" ]]; then
33-
echo "TAG_SUFFIX=${{ github.event.release.tag_name }}"-"${{ matrix.name }}" >> $GITHUB_ENV
33+
echo "TAG_SUFFIX=${{ github.event.release.tag_name }}-${{ matrix.name }}" >> $GITHUB_ENV
3434
else
3535
SHORT_HASH=$(git rev-parse --short HEAD)
3636
LATEST_RELEASE=$(git describe --tags --abbrev=0 || echo "latest")
37-
echo "TAG_SUFFIX=${LATEST_RELEASE}"-"${{ matrix.name }}"" >> $GITHUB_ENV
37+
echo "TAG_SUFFIX=${LATEST_RELEASE}-${{ matrix.name }}" >> $GITHUB_ENV
3838
fi
3939
40+
4041
- name: Log in to the Container registry
4142
uses: docker/login-action@v3
4243
with:

0 commit comments

Comments
 (0)