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:
parent
cd37f62a1b
commit
28535f27ed
|
@ -27,9 +27,13 @@ case $PROFILE in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
UNAME="$(uname -s)"
|
SYSTEM="$(./scripts/get-distro.sh)"
|
||||||
case "$UNAME" in
|
case "$SYSTEM" in
|
||||||
Darwin)
|
windows*)
|
||||||
|
echo "NOTE: no_relup_for_windows"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
macos*)
|
||||||
SHASUM="shasum -a 256"
|
SHASUM="shasum -a 256"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in New Issue