Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
gha: Add workflow to purge readme image cache
- Loading branch information
peaceiris
committed
Dec 8, 2019
1 parent
6da534f
commit 3514e58
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Purge image cache | ||
|
||
on: | ||
push: | ||
schedule: | ||
- cron: '54 18 * * *' | ||
|
||
jobs: | ||
purge: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
|
||
- run: | | ||
IMAGE_LIST=$(curl -sL https://github.com/${GITHUB_REPOSITORY} | \ | ||
grep -oE '<img src="https?://camo.githubusercontent.com/[^"]+' | \ | ||
sed -e 's/<img src="//') | ||
echo ${IMAGE_LIST} | xargs -I % curl -sX PURGE % |