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
Up until version 0.88.1 this only matched on hugo_<version>_Windows-64bit.zip but after version 0.89 it also matches on a new asset called hugo_<version>_Windows-ARM64.zip.
The logic for finding the download URL for the version should change to handle this new asset in the Hugo releases.
The text was updated successfully, but these errors were encountered:
Updating the line with this should do the trick: $win64hugo = $release.assets | where { $_.name -like '*Windows-64*' }
or we could go for a regex match instead: $win64hugo = $release.assets | where { $_.name -match 'Windows\-64.*' }
gaelcolas
added a commit
to gaelcolas/hugo-vsts-extension
that referenced
this issue
Nov 17, 2021
The extension finds the Windows 64 release by looking at if the name of the asset matches
'*Windows*64*'
.hugo-vsts-extension/hugo-task/Select-HugoVersion.ps1
Line 26 in f4512a1
Up until version 0.88.1 this only matched on
hugo_<version>_Windows-64bit.zip
but after version 0.89 it also matches on a new asset calledhugo_<version>_Windows-ARM64.zip
.The logic for finding the download URL for the version should change to handle this new asset in the Hugo releases.
The text was updated successfully, but these errors were encountered: