CI mac: added arch string

to identify if the build is arm64 or x86_64
This commit is contained in:
Martin Pulec
2024-02-09 09:57:19 +01:00
parent e7c2379fef
commit dbe6fff795
2 changed files with 7 additions and 2 deletions

View File

@@ -14,6 +14,11 @@ else
TAG=$VERSION
fi
# include platform on mac in version string
if [ "$(uname -s)" = Darwin ]; then
VERSION="$(uname -m)-$VERSION"
fi
if [ -z "${CHANNEL-}" ]; then
CHANNEL=$VERSION
fi