From a85f0a97f72296098b33d5293de98c352009987d Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Mon, 10 Jul 2023 22:36:15 -0400 Subject: [PATCH] Add a manual workflow for clearing the cache --- .github/workflows/clear-cache.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/clear-cache.yaml diff --git a/.github/workflows/clear-cache.yaml b/.github/workflows/clear-cache.yaml new file mode 100644 index 00000000..9952deae --- /dev/null +++ b/.github/workflows/clear-cache.yaml @@ -0,0 +1,12 @@ +name: Clear Cache +on: + workflow_dispatch: + +jobs: + clear-cache: + name: Clear Cache + runs-on: ubuntu-20.04 + + steps: + - name: Clear caches + uses: easimon/wipe-cache@v2 \ No newline at end of file