Skip to content

Commit

Permalink
Update references to Volare
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Oct 31, 2023
1 parent d159922 commit d8461f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/generate_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@

sys.path.insert(0, os.getcwd())

import volare # noqa: E402
import ioplace_parser # noqa: E402

print("Getting tags…")

latest_tag = None
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)

0 comments on commit d8461f8

Please sign in to comment.