Skip to content

Commit

Permalink
ci: fix docker release name
Browse files Browse the repository at this point in the history
  • Loading branch information
qarlosalberto committed Oct 14, 2024
1 parent 5efdd13 commit 9d5dd74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ jobs:
run: |
BRANCH_NAME="${GITHUB_REF#refs/heads/}"
DATE_TAG="${GITHUB_SHA:0:10}__$(date +'%Y-%m-%d')"
RELEASE_NAME="${{ github.event.release.name }}"
RELEASE_NAME_INIT="${{ github.event.release.name }}"
RELEASE_NAME="${RELEASE_NAME_INIT##* }"
if [ -n "$RELEASE_NAME" ]; then
tags="${{ env.PREFIX }}-${DATE_TAG},${{ env.PREFIX }}-${RELEASE_NAME}"
Expand Down

0 comments on commit 9d5dd74

Please sign in to comment.