We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6340713 commit 58ae981Copy full SHA for 58ae981
.github/workflows/build.yml
@@ -79,8 +79,7 @@ jobs:
79
artifact_name=$(echo "$artifact" | cut -d '=' -f2)
80
artifact_name=${artifact_name%-$artifact_version.jar}
81
artifact_size=$(grep "${artifact%%.filename*}.length" target/powertools-parent-*.buildinfo | cut -d '=' -f2)
82
- artifact_size=$((artifact_size/1000))
83
- echo "| ${artifact_name} | ${artifact_version} | ${artifact_size} |" >> report.md
+ printf "| %s | %s | %.2f |\n" "$artifact_name" "$artifact_version" "$(bc <<< "scale=2; $artifact_size/1000")" >> report.md
84
done
85
- name: Find potential existing report
86
if: ${{ matrix.java == '11.0.x' }} # do it once
0 commit comments