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 4a86db8 commit f2d93d7Copy full SHA for f2d93d7
entrypoint.py
@@ -263,8 +263,8 @@ def main():
263
publication_host = os.environ["PUBLICATION_HOST"]
264
265
# Convert the space-separated strings to lists
266
- changed_files = os.environ.get("CHANGED_FILES", "").split("")
267
- deleted_files = os.environ.get("DELETED_FILES", "").split("")
+ changed_files = os.environ.get("CHANGED_FILES", "").split()
+ deleted_files = os.environ.get("DELETED_FILES", "").split()
268
269
repo = os.environ["GITHUB_REPOSITORY"]
270
branch = os.environ["GITHUB_REF"].split("/")[-1]
0 commit comments