2019-12-08 09:21:16 +01:00
|
|
|
name: Purge image cache
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '4 18 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
purge:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
|
2019-12-08 09:45:29 +01:00
|
|
|
- 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 %
|