Skip to content

Commit 2b2f643

Browse files
committed
refactor: extract hurl version to a variable
1 parent fbcc711 commit 2b2f643

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/integration-tests.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ jobs:
8484

8585
- name: Install Hurl
8686
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
87+
VER=4.2.0
88+
DEB=hurl_${VER}_amd64.deb
89+
curl --location --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VER/$DEB
8990
sudo dpkg --install $DEB
9091
9192
- name: Show Hurl version

0 commit comments

Comments
 (0)