build: adds action to manually remove faulty cache entries (#14017)

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
Omar López
2024-03-07 13:53:57 -03:00
committed by GitHub
co-authored by Peer Richelsen
parent 8deaea3edd
commit 286f696302
@@ -0,0 +1,17 @@
name: Manually Delete BuildJet Cache
on:
workflow_dispatch:
inputs:
cache_key:
description: "BuildJet Cache Key to Delete"
required: true
type: string
jobs:
manually-delete-buildjet-cache:
runs-on: buildjet-2vcpu-ubuntu-2204
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: buildjet/cache-delete@v1
with:
cache_key: ${{ inputs.cache_key }}