Clear cache #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |