File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 7777 # shellcheck disable=SC2086
7878 VERSION="$(\grep ${IMAGE}/Dockerfile -e '^FROM' | \head -n 1 | \sed -e 's/@.*$//; s/^.*://;')"
7979 if [[ "${VERSION}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] ; then
80- \ echo "VERSION=${VERSION}" >> "${GITHUB_ENV}"
80+ echo "VERSION=${VERSION}" >> "${GITHUB_ENV}"
8181 fi
8282 - name : Check if release already exists
8383 if : env.VERSION != ''
Original file line number Diff line number Diff line change 2626# Support working_directory input if used as GitHub action
2727if [ -n " ${INPUT_WORKING_DIRECTORY+x} " ]; then
2828 if [ " ${DEBUG} " = true ]; then
29- \ e cho " DEBUG: changing working directory to: ${INPUT_WORKING_DIRECTORY} "
29+ echo " DEBUG: changing working directory to: ${INPUT_WORKING_DIRECTORY} "
3030 fi
3131 cd " ${INPUT_WORKING_DIRECTORY} "
3232fi
3333
3434if [ " ${DEBUG} " = true ]; then
35- \ e cho " DEBUG: current working directory = $( pwd) "
36- \ e cho ' DEBUG:'
35+ echo " DEBUG: current working directory = $( pwd) "
36+ echo ' DEBUG:'
3737 # shellcheck disable=SC2012
3838 \l s -hal | \s ed -e ' s/^/DEBUG: /'
39- \ e cho ' DEBUG:'
39+ echo ' DEBUG:'
4040fi
4141
4242if [ -f mvnw ]; then
4343 if [ " ${DEBUG} " = true ]; then
44- \ e cho ' DEBUG: using existing maven wrapper'
44+ echo ' DEBUG: using existing maven wrapper'
4545 fi
4646 cmd=' ./mvnw'
4747 # Ensure maven wrapper work directory is somewhere we have
@@ -53,7 +53,7 @@ if [ -f mvnw ]; then
5353 fi
5454else
5555 if [ " ${DEBUG} " = true ]; then
56- \ e cho ' DEBUG: using docker-provided maven command'
56+ echo ' DEBUG: using docker-provided maven command'
5757 fi
5858 cmd=$( \w hich mvn)
5959fi
7575 versions:display-plugin-updates \
7676 versions:display-property-updates |
7777 while read -r l; do
78- \ e cho " ${l} "
78+ echo " ${l} "
7979 if [[ " ${l} " == * " [ERROR]" * ||
8080 " ${l} " == * " has a newer version:" * ||
8181 " ${l} " == * " have newer versions:" * ||
You can’t perform that action at this time.
0 commit comments