We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38025e0 commit 3d96e9dCopy full SHA for 3d96e9d
2 files changed
.github/actions/cleanup/action.yaml
@@ -18,6 +18,13 @@ runs:
18
run: |
19
sudo rm -rf test_data || true
20
21
+ - name: "Delete kind cluster"
22
+ if: always()
23
+ shell: bash
24
+ run: |
25
+ kind delete cluster || true
26
+ docker network rm kind || true
27
+
28
- name: "Stop all running Docker containers"
29
if: always()
30
shell: bash
.github/workflows/clean-runner.yml
@@ -24,7 +24,6 @@ jobs:
- name: "Clean workdir before checkout"
sudo rm -rf $GITHUB_WORKSPACE/* || true
- sudo rm -rf /etc/chrony/chrony.conf || true
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
0 commit comments