Skip to content

Commit

Permalink
Merge pull request #171 from SpectralVectors/master
Browse files Browse the repository at this point in the history
Update create_release.yaml
  • Loading branch information
pppalain authored Sep 2, 2024
2 parents cfd0639 + e5251af commit cddfd32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
toml_file=Path("scripts","addons","cam","blender_manifest.toml")
toml_text=toml_file.read_text()
version_regex= r'version\s=\s"[0-9]+\.[0-9]+\.[0-9]+"'
toml_text = re.sub(version_regex,f'version = "{major}.{minor}.{patch}"',init_text)
toml_text = re.sub(version_regex,f'version = "{major}.{minor}.{patch}"',toml_text)
toml_file.write_text(toml_text)
env_file = Path(os.getenv('GITHUB_ENV'))
Expand Down

0 comments on commit cddfd32

Please sign in to comment.