This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # clean up github actions runner | |
| on: | |
| workflow_dispatch: | |
| push: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
| cancel-in-progress: true | |
| name: Clean up GitHub Actions self-hosted GPU runner | |
| jobs: | |
| cleanup: | |
| name: Clean up GitHub Actions self-hosted GPU runner | |
| runs-on: nvidia | |
| steps: | |
| - name: Remove tool cache | |
| run: rm -rf /root/actions-runner/_work/_tool |