ci: no special handing for windows package name

windows packages for 5.0.0 and 5.0.1 were release using long package
name (with otp version).
but we have manually made a copy of the package to default (short) name
and uploaded to s3.
going forward, windows packages will only release on default (short)
names because we never support relup for windows
This commit is contained in:
Zaiming (Stone) Shi 2022-07-02 10:12:46 +02:00
parent cd37f62a1b
commit 28535f27ed
1 changed files with 7 additions and 3 deletions

View File

@ -27,9 +27,13 @@ case $PROFILE in
;;
esac
UNAME="$(uname -s)"
case "$UNAME" in
Darwin)
SYSTEM="$(./scripts/get-distro.sh)"
case "$SYSTEM" in
windows*)
echo "NOTE: no_relup_for_windows"
exit 0
;;
macos*)
SHASUM="shasum -a 256"
;;
*)