Skip to content

Commit

Permalink
Return total json dump instead of count
Browse files Browse the repository at this point in the history
Signed-off-by: validcube <[email protected]>
  • Loading branch information
validcube committed Jan 12, 2025
1 parent ff96beb commit 090f35f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/release_helper.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from contextlib import contextmanager
from functools import lru_cache
import json
import os
import re
import sys
Expand Down Expand Up @@ -300,6 +301,11 @@ def new_icon_since(last_tag: str) -> tuple:
print(f"📊 Total icons: {total_icons}")
print(f"📊 Total links: {total_links}")

print(f"::set-output name=new_icons::{json.dumps(new_icons)}")
print(f"::set-output name=linked_icons::{json.dumps(linked_icons)}")
print(f"::set-output name=total_icons::{total_icons}")
print(f"::set-output name=total_links::{total_links}")

return new_icons, linked_icons, total_icons, total_links


Expand Down

0 comments on commit 090f35f

Please sign in to comment.