Skip to content

cloudflare-clear-cache #1829

cloudflare-clear-cache

cloudflare-clear-cache #1829

name: cloudflare-clear-cache
on:
workflow_run:
workflows: [pages-build-deployment]
types: [completed]
jobs:
cloudflare-cache:
runs-on: ubuntu-latest
steps:
- name: Purge Cloudflare Cache
run: |
curl -fsS -X POST \
"https://api.cloudflare.com/client/v4/zones/${{ secrets.CLOUDFLARE_ZONE }}/purge_cache" \
-H "Authorization: Bearer ${{ secrets.CLOUDFLARE_TOKEN }}" \
-H "Content-Type: application/json" \
--data '{"purge_everything":true}'