Skip to content

Commit a2cd18c

Browse files
ci: PLT-442: Fix SDK version regexp
1 parent 43a4f35 commit a2cd18c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
path: pyProjectPath,
4949
});
5050
const pyproject = Buffer.from(pyprojectBlob.data.content, pyprojectBlob.data.encoding).toString("utf8");
51-
const versionMatch = pyproject.match(/version = "(?<version>[.a-f0-9]+)"/);
51+
const versionMatch = pyproject.match(/version = "(?<version>[\.a-z0-9]+)"/);
5252
if (versionMatch && versionMatch.groups.version) {
5353
core.setOutput('version', versionMatch.groups.version);
5454
} else {

0 commit comments

Comments
 (0)