From 3a8197b510edc47b795b0f3148841a68c313b420 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 18 Dec 2022 12:35:05 -0500 Subject: [PATCH] Cloudflare purge --- .github/workflows/build.yml | 6 ------ .github/workflows/deploy.yml | 25 ++++++++++--------------- 2 files changed, 10 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69dc7fc..84012b2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,12 +38,6 @@ jobs: - name: Delete dist gitignore run: sudo rm -f ./public/dist/.gitignore - # - name: Publish site as artifact - # uses: actions/upload-artifact@v2 - # with: - # name: website-static-bundle - # path: ./public - - name: Upload site as artifact uses: actions/upload-pages-artifact@v1 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 78125ab..1406087 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,18 +22,13 @@ jobs: id: deployment uses: actions/deploy-pages@v1 - # - name: Download bundle artifact - # uses: actions/download-artifact@v2 - # with: - # name: website-static-bundle - # path: ./public - - # - name: Deploy to GitHub Pages - # if: success() - # uses: crazy-max/ghaction-github-pages@v2 - # with: - # target_branch: gh-pages - # build_dir: public - # fqdn: ewpratten.com - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + purge_cache: + runs_on: ubuntu-latest + needs: build + environment: + name: cloudflare-api + - name: Purge Cloudflare Cache + uses: jakejarvis/cloudflare-purge-action@master + env: + CLOUDFLARE_ZONE: "ewpratten.com" + CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}