Skip to content

Commit c41ff08

Browse files
[CI/CD] Updated Postman Regex to Match New Filenames
1 parent c2f96e9 commit c41ff08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/postman.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: |
6666
ext=${{ matrix.extension }}
6767
file=$(ls Postman*${ext})
68-
version=$(python3 -c "import re; print(re.match(r'Postman.*(([0-9]+\.){2}[0-9]+)${ext}', '${file}').group(1))")
68+
version=$(python3 -c "import re; print(re.match(r'Postman.*(([0-9]+\.){2}[0-9]+).*${ext}', '${file}').group(1))")
6969
echo "Postman Version = ${version}"
7070
echo "VERSION=${version}" >> $GITHUB_ENV
7171
rm -v ${file}

0 commit comments

Comments
 (0)