From d8461f8f8a1435bd3f8a684e829ab95b67c54984 Mon Sep 17 00:00:00 2001 From: Mohamed Gaber Date: Tue, 31 Oct 2023 23:47:51 +0200 Subject: [PATCH] Update references to Volare --- .github/scripts/generate_tag.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/generate_tag.py b/.github/scripts/generate_tag.py index 46c104a..31de2f8 100644 --- a/.github/scripts/generate_tag.py +++ b/.github/scripts/generate_tag.py @@ -20,7 +20,7 @@ sys.path.insert(0, os.getcwd()) -import volare # noqa: E402 +import ioplace_parser # noqa: E402 print("Getting tagsā€¦") @@ -28,12 +28,12 @@ latest_tag_commit = None tags = [pair[1] for pair in gh.volare.tags] -tag_exists = volare.__version__ in tags +tag_exists = ioplace_parser.__version__ in tags if tag_exists: print("Tag already exists. Leaving NEW_TAG unaltered.") else: - new_tag = volare.__version__ + new_tag = ioplace_parser.__version__ print("Found new tag %s." % new_tag) gh.export_env("NEW_TAG", new_tag)