Skip to content

Commit 3b431e0

Browse files
committed
Fix Elixir versions order in publish script
1 parent 589dc72 commit 3b431e0

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

scripts/release_hex.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,18 @@ function main {
2626
touch "${hex_csv}"
2727
sed -i.bak "/^${hex_version},/d" "${hex_csv}"
2828

29-
# UPDATE THIS FOR EVERY RELEASE
30-
31-
build ${hex_version} 25.3.2.16 1.18.0 1.18.0 noble-20241015 # need to use exactly 1.18.0 and that requires older otp & ubuntu
32-
build ${hex_version} 26.2.5.6 1.18.0 1.18.0 noble-20241015 # ditto
33-
build ${hex_version} 27.2 1.18.0 1.18.0 noble-20241015 # ditto
29+
# UPDATE THIS FOR EVERY RELEASE, ORDER MATTERS
3430

31+
# Elixir v1.17
3532
build ${hex_version} 25.3.2.20 1.17.3 1.17.0 noble-20250404
3633
build ${hex_version} 26.2.5.11 1.17.3 1.17.0 noble-20250404
3734
build ${hex_version} 27.3.3 1.17.3 1.17.0 noble-20250404
3835

36+
# Elixir v1.18
37+
build ${hex_version} 25.3.2.16 1.18.0 1.18.0 noble-20241015 # need to use exactly 1.18.0 and that requires older otp & ubuntu
38+
build ${hex_version} 26.2.5.6 1.18.0 1.18.0 noble-20241015 # ditto
39+
build ${hex_version} 27.2 1.18.0 1.18.0 noble-20241015 # ditto
40+
3941
rm -rf _build
4042
rm "${hex_csv}.bak"
4143

0 commit comments

Comments
 (0)