You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
change filename in releases to allow automatic download of newest release with powershell like this way
$repo = "michaelmsonne/ManagedIdentityPermissionManager"
$file = "msitool.exe"
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)
The text was updated successfully, but these errors were encountered: