Skip to content

Commit 2684bd2

Browse files
authored
Fix Version test (#489)
* Add iputils-ping to the base packages * Fix version test
1 parent 95478ae commit 2684bd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
fi
145145
146146
VERSION=${TRAVIS_TAG}
147-
if [[ "$VERSION" ~= ^v ]]; then
147+
if [[ "$VERSION" =~ ^v ]]; then
148148
VERSION=${TRAVIS_TAG:1}
149149
fi
150150
@@ -300,7 +300,7 @@ jobs:
300300
fi
301301
302302
VERSION=${TRAVIS_TAG}
303-
if [[ "$VERSION" ~= ^v ]]; then
303+
if [[ "$VERSION" =~ ^v ]]; then
304304
VERSION=${TRAVIS_TAG:1}
305305
fi
306306

0 commit comments

Comments
 (0)