Skip to content

Commit c965b6e

Browse files
committed
feat: add health check packages to cleanup workflow
1 parent 45601d8 commit c965b6e

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.github/workflows/clean-packages.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,44 @@ jobs:
9090
package-name: 'Kista.Manager.EasyCaching'
9191
package-type: 'nuget'
9292
min-versions-to-keep: 10
93+
delete-only-pre-release-versions: "true"
94+
95+
- name: Remove the Old Kista.HealthChecks Package
96+
uses: actions/delete-package-versions@v4
97+
with:
98+
package-name: 'Kista.HealthChecks'
99+
package-type: 'nuget'
100+
min-versions-to-keep: 10
101+
delete-only-pre-release-versions: "true"
102+
103+
- name: Remove the Old Kista.HealthChecks.EntityFramework Package
104+
uses: actions/delete-package-versions@v4
105+
with:
106+
package-name: 'Kista.HealthChecks.EntityFramework'
107+
package-type: 'nuget'
108+
min-versions-to-keep: 10
109+
delete-only-pre-release-versions: "true"
110+
111+
- name: Remove the Old Kista.HealthChecks.InMemory Package
112+
uses: actions/delete-package-versions@v4
113+
with:
114+
package-name: 'Kista.HealthChecks.InMemory'
115+
package-type: 'nuget'
116+
min-versions-to-keep: 10
117+
delete-only-pre-release-versions: "true"
118+
119+
- name: Remove the Old Kista.HealthChecks.MongoFramework Package
120+
uses: actions/delete-package-versions@v4
121+
with:
122+
package-name: 'Kista.HealthChecks.MongoFramework'
123+
package-type: 'nuget'
124+
min-versions-to-keep: 10
125+
delete-only-pre-release-versions: "true"
126+
127+
- name: Remove the Old Kista.Manager.AspNetCore.HealthChecks Package
128+
uses: actions/delete-package-versions@v4
129+
with:
130+
package-name: 'Kista.Manager.AspNetCore.HealthChecks'
131+
package-type: 'nuget'
132+
min-versions-to-keep: 10
93133
delete-only-pre-release-versions: "true"

0 commit comments

Comments
 (0)