From f82b4bb69d7d85c0996e0775e2cde3d374eba5fc Mon Sep 17 00:00:00 2001 From: arkon Date: Sun, 11 Jul 2021 10:39:31 -0400 Subject: [PATCH] [skip ci] Purge cached index on jsDelivr --- .github/scripts/commit-repo.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/scripts/commit-repo.sh b/.github/scripts/commit-repo.sh index ab6163b83..c01da048c 100755 --- a/.github/scripts/commit-repo.sh +++ b/.github/scripts/commit-repo.sh @@ -9,6 +9,9 @@ if [ -n "$(git status --porcelain)" ]; then git add . git commit -m "Update extensions repo" git push + + # Purge cached index on jsDelivr + curl https://purge.jsdelivr.net/gh/tachiyomiorg/tachiyomi-extensions@repo/index.min.json else echo "No changes to commit" fi