From 71c6195765b9695b235561c33d93d83571134cda Mon Sep 17 00:00:00 2001 From: Faboslav Date: Thu, 3 Oct 2024 11:52:14 +0200 Subject: [PATCH] Clear cache workflow --- .github/workflows/clear-cache.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/clear-cache.yml diff --git a/.github/workflows/clear-cache.yml b/.github/workflows/clear-cache.yml new file mode 100644 index 00000000..5664ce22 --- /dev/null +++ b/.github/workflows/clear-cache.yml @@ -0,0 +1,16 @@ +name: "Clear cache" + +on: + workflow_dispatch: + +jobs: + clear-cache: + runs-on: ubuntu-latest + name: "Clear cache" + timeout-minutes: 60 + steps: + - uses: MyAlbum/purge-cache@v2 + with: + accessed: true + created: true + max-age: 0 \ No newline at end of file