Skip to content

Commit

Permalink
Add nuget to packages being cleaned up
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell committed Mar 8, 2024
1 parent de960d7 commit efed685
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Delete old packages
- name: Delete old packages (docker)
uses: actions/delete-package-versions@v5
with:
package-name: 'azure-resources-cleaner'
package-type: 'container'
min-versions-to-keep: 20
delete-only-pre-release-versions: "true"

- name: Delete old packages (nuget)
uses: actions/delete-package-versions@v5
with:
package-name: 'azure-resources-cleaner'
package-type: 'nuget'
min-versions-to-keep: 10

0 comments on commit efed685

Please sign in to comment.