Update winget contrib doc

This commit is contained in:
Filipe PINTO 2023-01-26 14:23:00 +01:00 committed by GitHub
parent 4d2bffb205
commit eb34bb7ec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,5 +5,7 @@ Official hurl manifest URL [#324](https://github.com/Orange-OpenSource/hurl/issu
Update manifest command:
```
wingetcreate update --submit --token <personal_github_token> --urls https://github.com/Orange-OpenSource/hurl/releases/download/<version>/hurl-<version>-win64-installer.exe --version <version> Orange-OpenSource.Hurl
$hurl_latest_version=((Invoke-WebRequest -UseBasicParsing https://api.github.com/repos/Orange-OpenSource/hurl/releases/latest).content | ConvertFrom-Json | Select -exp tag_name)
echo ${hurl_latest_version}
wingetcreate update --submit --token <personal_github_token> --urls https://github.com/Orange-OpenSource/hurl/releases/download/${hurl_latest_version}/hurl-${hurl_latest_version}-win64-installer.exe --version ${hurl_latest_version} Orange-OpenSource.Hurl
```