buildjet-cache-delete.yaml 432 B

1234567891011121314151617
  1. name: Manually Delete BuildJet Cache
  2. on:
  3. workflow_dispatch:
  4. inputs:
  5. cache_key:
  6. description: 'BuildJet Cache Key to Delete'
  7. required: true
  8. type: string
  9. jobs:
  10. manually-delete-buildjet-cache:
  11. runs-on: buildjet-2vcpu-ubuntu-2204
  12. steps:
  13. - name: Checkout
  14. uses: actions/checkout@v4
  15. - uses: buildjet/cache-delete@v1
  16. with:
  17. cache_key: ${{ inputs.cache_key }}