michaelmsonne / ManagedIdentityPermissionManager

Azure Managed Identity Permissions Tool, a new PowerShell tool that simplifies and streamlines the management of Managed Identity permissions in Azure (Entra ID)
https://blog.sonnes.cloud
MIT License
29 stars 1 forks source link

feat: change filename in releases to allow automatic download of newest release #11

Open kamellemann opened 1 week ago

kamellemann commented 1 week ago

Feature Request

Describe the Feature Request

change filename in releases to allow automatic download of newest release with powershell like this way $repo = "michaelmsonne/ManagedIdentityPermissionManager" $file = "msitool.exe"

$releases = "https://api.github.com/repos/$repo/releases"

Write-Host Determining latest release $tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[0].tag_name

$download = "https://github.com/$repo/releases/download/$tag/$file"

Describe Preferred Solution

Describe Alternatives

Related Code

Additional Context

If the feature request is approved, would you be willing to submit a PR? Yes / No (Help can be provided if you need assistance submitting a PR)

michaelmsonne commented 1 week ago

In the tool itself or bu another usecase ? :)