mirror of
https://github.com/JDM170/ReVanced_Builder
synced 2025-11-29 14:41:46 +07:00
19 lines
547 B
PowerShell
19 lines
547 B
PowerShell
# https://github.com/ReVanced/GmsCore
|
|
$Parameters = @{
|
|
Uri = "https://api.github.com/repos/ReVanced/GmsCore/releases/latest"
|
|
UseBasicParsing = $true
|
|
Verbose = $true
|
|
}
|
|
$apiResult = Invoke-RestMethod @Parameters
|
|
$URL = $apiResult.assets.browser_download_url
|
|
$TAG = $apiResult.tag_name
|
|
$Parameters = @{
|
|
Uri = $URL
|
|
Outfile = "Temp\microg.apk"
|
|
UseBasicParsing = $true
|
|
Verbose = $true
|
|
}
|
|
Invoke-RestMethod @Parameters
|
|
|
|
echo "MicroGTag=$TAG" >> $env:GITHUB_ENV
|