Files
store/.github/workflows/catalog.yml
2025-09-03 14:01:37 -07:00

20 lines
632 B
YAML

on: push
permissions:
contents: write
jobs:
c:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
echo "[" >catalog.json;c=;
for f in *;do [ -f "$f" ]||continue;[ "${f:0:1}" = . ]&&continue;
echo "$c {\"name\": \"$f\", \"raw\": \"https://raw.githubusercontent.com/$GITHUB_REPOSITORY/$GITHUB_REF_NAME/$f\"}" >>catalog.json;
c=,;done
echo "]" >>catalog.json
git config user.name bot
git config user.email bot@users.noreply.github.com
git add catalog.json
git commit -m update || true
git push