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 a52cbd0 commit 450d67cCopy full SHA for 450d67c
.github/workflows/build.yml
@@ -85,8 +85,7 @@ jobs:
85
artifact_name=$(echo "$artifact" | cut -d '=' -f2)
86
artifact_name=${artifact_name%-$artifact_version.jar}
87
artifact_size=$(grep "${artifact%%.filename*}.length" target/powertools-parent-*.buildinfo | cut -d '=' -f2)
88
- artifact_size=$((artifact_size/1000))
89
- 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
90
done
91
- name: Find potential existing report
92
if: ${{ matrix.java == '11.0.x' }} # do it once
0 commit comments