1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2025-12-19 18:08:29 +00:00

Fix release builds without dev part in version number (#1396)

This commit is contained in:
Stefan Agner
2021-06-09 01:18:42 +02:00
committed by GitHub
parent 89c4d57b18
commit cb0fa11eeb

View File

@@ -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: