Skip to content

Commit 43a4f35

Browse files
ci: PLT-442: Fix condition
1 parent 48be3b8 commit 43a4f35

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
@@ -49,7 +49,7 @@ jobs:
4949
});
5050
const pyproject = Buffer.from(pyprojectBlob.data.content, pyprojectBlob.data.encoding).toString("utf8");
5151
const versionMatch = pyproject.match(/version = "(?<version>[.a-f0-9]+)"/);
52-
if (versionMatch && versionMatch.groups.version && false) {
52+
if (versionMatch && versionMatch.groups.version) {
5353
core.setOutput('version', versionMatch.groups.version);
5454
} else {
5555
throw `Version not found in ${pyprojectBlob.url}`

0 commit comments

Comments
 (0)