We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c50b1f2 commit deb70ffCopy full SHA for deb70ff
.github/workflows/docker.yml
@@ -30,11 +30,11 @@ jobs:
30
id: tag_suffix
31
run: |
32
if [[ "${{ github.event_name }}" == "release" ]]; then
33
- echo "TAG_SUFFIX=${{ github.event.release.tag_name }}-${{ matrix.name }}" >> $GITHUB_ENV
+ echo "TAG_SUFFIX=${{ github.event.release.tag_name }}"-"${{ matrix.name }}" >> $GITHUB_ENV
34
else
35
SHORT_HASH=$(git rev-parse --short HEAD)
36
LATEST_RELEASE=$(git describe --tags --abbrev=0 || echo "latest")
37
- echo "TAG_SUFFIX=${LATEST_RELEASE}-${{ matrix.name }}"" >> $GITHUB_ENV
+ echo "TAG_SUFFIX=${LATEST_RELEASE}"-"${{ matrix.name }}"" >> $GITHUB_ENV
38
fi
39
40
- name: Log in to the Container registry
0 commit comments