We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbcc711 commit 2b2f643Copy full SHA for 2b2f643
.github/workflows/integration-tests.yml
@@ -84,8 +84,9 @@ jobs:
84
85
- name: Install Hurl
86
run: |
87
- DEB=hurl_4.2.0_amd64.deb
88
- curl --location --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/4.2.0/$DEB
+ VER=4.2.0
+ DEB=hurl_${VER}_amd64.deb
89
+ curl --location --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VER/$DEB
90
sudo dpkg --install $DEB
91
92
- name: Show Hurl version
0 commit comments