You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - uses: buildjet/cache-delete@v1
- with:
- cache_key: ${{ inputs.cache_key }}
|