Skip to content

Commit 2b0e76a

Browse files
committed
fix: workflow
1 parent c368a84 commit 2b0e76a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
import re
6363
import pathlib
6464
txt = pathlib.Path('gleam.toml').read_text(encoding='utf-8')
65-
m = re.search(r'^version\\s*=\\s*\"([^\"]+)\"\\s*$', txt, re.M)
65+
m = re.search(r'^version\s*=\s*"([^"]+)"\s*$', txt, re.M)
6666
print(m.group(1) if m else '')
6767
PY
6868
)"

0 commit comments

Comments
 (0)