mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 11:02:43 +03:00
23 lines
533 B
Markdown
23 lines
533 B
Markdown
# how to manage hurl chocolatey package
|
|
Get sha256 sum of the new hurl-x.y.z-win64.zip file
|
|
|
|
```
|
|
Get-FileHash -Path <path>\hurl-<x>.<y>.<z>-win64.zip
|
|
```
|
|
|
|
Update *.nuspec and tools/*.ps1 files with new version and sum values, then execute local installer:
|
|
|
|
```
|
|
choco pack
|
|
choco install hurl -s .
|
|
hurl --version
|
|
echo "https://GET google.fr" | hurl --location
|
|
```
|
|
|
|
and finally push package to official chocolatey repository
|
|
|
|
```
|
|
choco apikey -k <choco api key> -source https://push.chocolatey.org/
|
|
choco push
|
|
```
|