Fixed tag generation for releases

This commit is contained in:
Alexey Pustovalov 2021-10-19 02:29:17 +03:00
parent fda3ea30e8
commit 79a0b16fb8
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ jobs:
github_ref=${github_ref##*/}
if [[ "$github_ref" == "{{ env.LATEST_BRANCH }}" ]]; then
if [[ "$github_ref" == "${{ env.LATEST_BRANCH }}" ]]; then
result=true
fi
echo "::set-output name=is_default_branch::$result"

View File

@ -79,7 +79,7 @@ jobs:
github_ref=${github_ref##*/}
if [[ "$github_ref" == "{{ env.LATEST_BRANCH }}" ]]; then
if [[ "$github_ref" == "${{ env.LATEST_BRANCH }}" ]]; then
result=true
fi
echo "::set-output name=is_default_branch::$result"