We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe9e359 commit 01bf2c4Copy full SHA for 01bf2c4
1 file changed
.github/workflows/publish-dev-package.yml
@@ -47,10 +47,10 @@ jobs:
47
- name: Prune old -dev packages
48
shell: pwsh
49
run: |
50
- $dryRun = $true
+ $dryRun = $false
51
$packageIndexUrl = 'https://s3.amazonaws.com/bloodhound-ad/sleet.packageindex.json'
52
$packageIds = @('SharpHoundCommons', 'SharpHoundRPC')
53
- $maxDevVersions = 2
+ $maxDevVersions = 7
54
55
$packageIndex = Invoke-RestMethod -Uri $packageIndexUrl
56
@@ -78,7 +78,7 @@ jobs:
78
}
79
else {
80
Write-Host "Deleting $($_.PackageId) $($_.Version)";
81
- #sleet delete --id $_.PackageId --version $_.Version --reason "Prune old dev build"
+ sleet delete --id $_.PackageId --version $_.Version --reason "Prune old dev build"
82
83
84
0 commit comments