From a76c7b776cd6112b360d5ba82d3a8a295c40f030 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Wed, 21 Aug 2019 23:22:54 -0400 Subject: [PATCH] testing my own cloudflare invalidation action :) --- .github/workflows/deploy.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..0f8455fe --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,15 @@ +name: Build & Deploy +on: push + +jobs: + deploy: + steps: + + # Put steps here to build your site, deploy it to a service, etc. + + - name: Purge cache + uses: jakejarvis/cloudflare-purge-action@master + env: + - CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }} + - CLOUDFLARE_EMAIL: ${{ secrets.CLOUDFLARE_EMAIL }} + - CLOUDFLARE_KEY: ${{ secrets.CLOUDFLARE_KEY }}