Skip to content

Commit

Permalink
Adding cache delete (#27417)
Browse files Browse the repository at this point in the history
  • Loading branch information
woody-apple authored and pull[bot] committed Dec 21, 2023
1 parent 84f1d96 commit 2401360
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/buildjet-cache-delete.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 2401360

Please sign in to comment.