Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a5e922a

Browse files
committed
remove version check for test
1 parent bece838 commit a5e922a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

continuous-delivery/test_version_exists

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ CURRENT_TAG=$(git describe --tags | cut -f2 -dv)
88
# convert v0.2.12-2-g50254a9 to 0.2.12
99
CURRENT_TAG_VERSION=$(git describe --tags | cut -f1 -d'-' | cut -f2 -dv)
1010
# if there's a hash on the tag, then this is not a release tagged commit
11-
if [ "$CURRENT_TAG" != "$CURRENT_TAG_VERSION" ]; then
12-
echo "Current tag version is not a release tag, cut a new release if you want to publish."
13-
exit 1
14-
fi
11+
# if [ "$CURRENT_TAG" != "$CURRENT_TAG_VERSION" ]; then
12+
# echo "Current tag version is not a release tag, cut a new release if you want to publish."
13+
# exit 1
14+
# fi
1515

1616
if python3 -m pip install --no-cache-dir -vvv AWSIoTPythonSDK==$CURRENT_TAG_VERSION; then
1717
echo "$CURRENT_TAG_VERSION is already in pypi, cut a new tag if you want to upload another version."

0 commit comments

Comments
 (0)