Closed ghusta closed 1 year ago
Provide a list of available JRE in docker images list in release notes.
For example :
In GitHub Actions, use for loop in shell, like :
for s in ''jre21 jre17 jre11''; do echo "- $s" done
Or:
jreList=("jre17" "jre11") for s in ${jreList[@]}; do echo "- $s" done
See also : https://www.freecodecamp.org/news/bash-array-how-to-declare-an-array-of-strings-in-a-bash-script/
Provide a list of available JRE in docker images list in release notes.
For example :