Skip to content

Clear cache

Clear cache #3

Workflow file for this run

name: Build
# Trigger the workflow on all pushes to the default branch (change as needed)
on:
push:
branches:
- clear-cache # Replace with your default branch name
jobs:
cache:
runs-on: ubuntu-latest # Use an appropriate runner OS
steps:
- name: Clear Cache
uses: actions/cache@v2
with:
path: path/to/cache # Specify the path to the cache you want to clear
key: ${{ runner.os }}-my-cache-key # Specify the cache key
action: delete