Skip to content

Purge Cache

Purge Cache #3

Workflow file for this run

name: Purge Cache
on: workflow_dispatch
permissions: write-all
# Force deleting cache entries
# ref: https://docs.github.com/ja/actions/using-workflows/caching-dependencies-to-speed-up-workflows#force-deleting-cache-entries
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Cleanup
run: gh cache delete --all --repo $REPO
env:
REPO: ${{ github.repository }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}