We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d22d39 commit c21a1f7Copy full SHA for c21a1f7
.github/workflows/check_latest_release.yml
@@ -45,6 +45,7 @@ jobs:
45
event = json.load(event_file)
46
tag = event["release"]["tag_name"]
47
48
+ print(dict(os.environ))
49
assert tag.count("-") == 1, f"Invalid tag format: {tag}. Expected format: <module_name>-<version>"
50
module_name, module_version = tag.split("-")
51
with open(os.getenv("GITHUB_OUTPUT"), "a", encoding="utf-8") as output_file:
0 commit comments