27
27
if : ${{ needs.changes.outputs.buck2 == 'true' || needs.changes.outputs.grapefruit == 'true' }}
28
28
runs-on : self-hosted
29
29
steps :
30
+ - uses : TooMuch4U/actions-clean@v2.1
30
31
- run : echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
31
32
- name : Check out repository code
32
33
uses : actions/checkout@v4
@@ -42,12 +43,15 @@ jobs:
42
43
with :
43
44
name : gfruit-image
44
45
path : " ./buck-out/v2/gen/root/**/*"
46
+ - name : Cleanup
47
+ run : bash .github/cleanup.sh
45
48
46
49
cosmo_seq :
47
50
needs : changes
48
51
if : ${{ needs.changes.outputs.buck2 == 'true' || needs.changes.outputs.cosmo_seq == 'true' }}
49
52
runs-on : self-hosted
50
53
steps :
54
+ - uses : TooMuch4U/actions-clean@v2.1
51
55
- run : echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
52
56
- name : Check out repository code
53
57
uses : actions/checkout@v4
@@ -63,12 +67,15 @@ jobs:
63
67
with :
64
68
name : cosmo-seq-image
65
69
path : " ./buck-out/v2/gen/root/**/*"
70
+ - name : Cleanup
71
+ run : bash .github/cleanup.sh
66
72
67
73
cosmo_hp :
68
74
needs : changes
69
75
if : ${{ needs.changes.outputs.buck2 == 'true' || needs.changes.outputs.cosmo_hp == 'true' }}
70
76
runs-on : self-hosted
71
77
steps :
78
+ - uses : TooMuch4U/actions-clean@v2.1
72
79
- run : echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
73
80
- name : Check out repository code
74
81
uses : actions/checkout@v4
84
91
with :
85
92
name : cosmo-hp-image
86
93
path : " ./buck-out/v2/gen/root/**/*"
94
+ - name : Cleanup
95
+ run : bash .github/cleanup.sh
87
96
88
97
bsv-streams :
89
98
needs : changes
@@ -113,4 +122,6 @@ jobs:
113
122
- uses : actions/upload-artifact@v4
114
123
with :
115
124
name : bsv-images
116
- path : " ./build/latest/**/*"
125
+ path : " ./build/latest/**/*"
126
+ - name : Cleanup
127
+ run : bash .github/cleanup.sh
0 commit comments