fix script name

This commit is contained in:
Bruno Alexandre Rosa 2026-03-14 21:48:44 -03:00
parent 220fa03b2e
commit 558b26a276
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
# Reports GitHub Actions cache usage, grouped by key prefix (first segment before "-" or "/") or for one prefix.
#
# Usage: .ci/gh_buildkit_cache_usage.sh [-m|--markdown] [key-prefix]
# Usage: .ci/gha_cache_usage.sh [-m|--markdown] [key-prefix]
# -m, --markdown output as a markdown table
# No key-prefix: all caches grouped by prefix.
# One arg: caches with that key prefix (default buildkit-blob).

View file

@ -1,5 +1,5 @@
# Reports GitHub Actions cache usage grouped by key prefix (e.g. buildkit, ccache, vcpkg).
# Run locally: .ci/gh_buildkit_cache_usage.sh
# Run locally: .ci/gha_cache_usage.sh
name: Cache usage report
@ -27,5 +27,5 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
./.ci/gh_buildkit_cache_usage.sh --markdown | tee report.txt
./.ci/gha_cache_usage.sh --markdown | tee report.txt
cat report.txt >> "$GITHUB_STEP_SUMMARY"