This commit is contained in:
meysamhadeli 2023-01-24 23:49:07 +03:30
parent 3f2514eb6e
commit 887bdeb648
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@
# This release drafter follows the conventions from https://keepachangelog.com, https://common-changelog.org/
# https://www.conventionalcommits.org
name-template: $(echo $GITHUB_REF | sed 's/refs\/tags\///')
tag-template: $(echo $GITHUB_REF | sed 's/refs\/tags\///')
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
template: |
## What Changed 👀
$CHANGES

View File

@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v3
- name: Print release tag
run: echo "The release tag is $(echo $GITHUB_REF | sed 's/refs\/tags\///')"
run: echo "The release tag is $(echo 'v$RESOLVED_VERSION')"
- name: Login to DockerHub
uses: docker/login-action@v2