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 9cb1f3a commit 4fb170bCopy full SHA for 4fb170b
.github/actions/artifact-size-metrics/utils/build-and-upload/metrics.sh
@@ -1,6 +1,9 @@
1
# Gets artifact size metrics from staging dir
2
getArtifactSizes() {
3
+ # Create output file
4
output="build/reports/metrics/artifact-size-metrics.csv"
5
+ mkdir -p "$(dirname "$output")"
6
+ touch "$output"
7
8
# Write CSV header
9
echo "Jar File,Size (Bytes)" > "$output"
0 commit comments