mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2025-07-14 22:29:17 +08:00
18 lines
359 B
YAML
18 lines
359 B
YAML
name: Purge image cache
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '54 18 * * */7'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
purge:
|
|
runs-on: ubuntu-22.04
|
|
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 %
|