Skip to content

Commit 7f5d32b

Browse files
authored
Fix tag reference in release action (#4)
1 parent c263b58 commit 7f5d32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with open("pyproject.toml", "rb") as f:
5656
pyproject = tomli.load(f)
5757
58-
pyproject["project"]["version"] = "${tag}"
58+
pyproject["project"]["version"] = "${{ env.tag }}"
5959
6060
with open("pyproject.toml", "wb") as f:
6161
tomli_w.dump(pyproject, f)

0 commit comments

Comments
 (0)