mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-07 05:53:59 -07:00
fix script name
This commit is contained in:
parent
220fa03b2e
commit
558b26a276
2 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Reports GitHub Actions cache usage, grouped by key prefix (first segment before "-" or "/") or for one prefix.
|
# 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
|
# -m, --markdown output as a markdown table
|
||||||
# No key-prefix: all caches grouped by prefix.
|
# No key-prefix: all caches grouped by prefix.
|
||||||
# One arg: caches with that key prefix (default buildkit-blob).
|
# One arg: caches with that key prefix (default buildkit-blob).
|
||||||
4
.github/workflows/cache-report.yml
vendored
4
.github/workflows/cache-report.yml
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
# Reports GitHub Actions cache usage grouped by key prefix (e.g. buildkit, ccache, vcpkg).
|
# 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
|
name: Cache usage report
|
||||||
|
|
||||||
|
|
@ -27,5 +27,5 @@ jobs:
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
run: |
|
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"
|
cat report.txt >> "$GITHUB_STEP_SUMMARY"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue