Fix module latest version in pipeline cache (#130)

* Fix module latest version in pipeline cache

* Fix positional params
This commit is contained in:
Björn Sundling 2022-12-02 11:09:28 +01:00 коммит произвёл GitHub
Родитель a4167d7676
Коммит 8b348720bc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 4 удалений

3
.github/actions/sharedSteps/action.yml поставляемый
Просмотреть файл

@ -11,8 +11,7 @@ runs:
run: |
$AzOpsModuleVersion = '${{env.AZOPS_MODULE_VERSION}}'
if(-not $AzOpsModuleVersion) {
$latestVersionUri = "https://www.powershellgallery.com/api/v2/FindPackagesById()?id='AzOps'&`$filter=IsLatestVersion"
$latestVersionId = (Invoke-RestMethod $latestVersionUri).properties.NormalizedVersion
$latestVersionId = Find-Module -Name AzOps | Select-Object -ExpandProperty Version
echo "MODULE_VERSION=$latestVersionId" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
}
else {

Просмотреть файл

@ -21,8 +21,7 @@ steps:
inputs:
targetType: "inline"
script: |
$latestVersionUri = "https://www.powershellgallery.com/api/v2/FindPackagesById()?id='AzOps'&`$filter=IsLatestVersion"
$latestVersionId = (Invoke-RestMethod $latestVersionUri).properties.NormalizedVersion
$latestVersionId = Find-Module -Name AzOps | Select-Object -ExpandProperty Version
Write-Host "##vso[task.setvariable variable=AZOPS_MODULE_VERSION;]$latestVersionId"
#