Skip to content

Commit

Permalink
Fix release builds without dev part in version number (#1396)
Browse files Browse the repository at this point in the history
  • Loading branch information
agners committed Jun 8, 2021
1 parent 89c4d57 commit cb0fa11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -29,8 +29,10 @@ jobs:
fi
if [ "" != "${tag_dev}" ]; then
echo "Note: Release build with custom dev part: ${tag_dev}."
echo "::set-output name=version::${major}.${build}.${tag_dev}"
else
echo "::set-output name=version::${major}.${build}"
fi
echo "::set-output name=version::${major}.${build}.${tag_dev}"
echo "::set-output name=version_dev::${tag_dev}"
build:
Expand Down

0 comments on commit cb0fa11

Please sign in to comment.