mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2026-09-23 13:18:40 +00:00
19 lines
415 B
YAML
19 lines
415 B
YAML
name: Purge image cache
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '54 18 * * */7'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
purge:
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 5
|
|
permissions: {}
|
|
steps:
|
|
- run: >
|
|
curl -sL "https://github.com/${GITHUB_REPOSITORY}" |
|
|
grep -oE '<img src="https?://camo.githubusercontent.com/[^"]+' |
|
|
sed -e 's/<img src="//' |
|
|
xargs -I % curl -sX PURGE "%"
|