You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Install hurl (cross-platform)
v1.0.0
Install hurl action
This action installs hurl as a binary file into your workflow. It can be run on Linux (ubuntu-latest
), macOS (macos-latest
), or Windows (windows-latest
).
- 🚀 Hurl releases page: https://github.com/Orange-OpenSource/hurl/releases
Additionally, this action uses GitHub caching mechanism to speed up your workflow execution time!
jobs:
install-hurl:
runs-on: ubuntu-20.04
steps:
- uses: gacts/install-hurl@v1
#with:
# version: 1.2.0 # `latest` by default, but you can set a specific version to install, e.g.: `1.6.0`
- run: hurl version # any hurl command can be executed
Following inputs can be used as step.with
keys:
Name | Type | Default | Required | Description |
---|---|---|---|---|
version |
string |
latest |
no | Hurl version to install |
github-token |
string |
${{ github.token }} |
no | GitHub token (for requesting the latest hurl version info) |
Name | Type | Description |
---|---|---|
hurl-bin |
string |
Path to the hurl binary file |
New versions releasing scenario:
- Make required changes in the changelog file
- Build the action distribution (
make build
oryarn build
) - Commit and push changes (including
dist
directory changes - this is important) into themaster
branch - Publish new release using repo releases page (git tag should follow
vX.Y.Z
format)
Major and minor git tags (v1
and v1.2
if you publish v1.2.Z
release) will be updated automatically.
If you find any action errors, please, make an issue in the current repository.
This is open-sourced software licensed under the MIT License.