Skip to content

Purge Camo Cache

Purge Camo Cache #85

name: Purge Camo Cache
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
purge:
runs-on: ubuntu-latest
steps:
- name: Purge star-history camo cache from README
run: |
curl -sL "https://github.com/citrolabs/ego-lite/blob/main/README.md" \
| grep -Eo 'https://camo\.githubusercontent\.com/[a-zA-Z0-9/]+' \
| sort -u \
| xargs -I {} sh -c 'echo "Purging: {}" && curl -s -X PURGE "{}"'