log
Some checks failed
/ alpine (push) Successful in 44s
/ debian (push) Failing after 1m5s
/ ubuntu (push) Failing after 1m5s
/ arch (push) Successful in 1m40s
/ opensuse (push) Successful in 3m1s
/ fedora (push) Successful in 9m50s
/ alma (push) Failing after 1m35s
/ rocky (push) Failing after 36m11s

This commit is contained in:
Marc Beninca 2024-10-21 16:07:33 +02:00
parent ff7c6b17d8
commit a0c36dba7c
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -29,10 +29,8 @@ def parse_inputs() -> dict[str, object]:
for variable, value in sorted(projects.environment.items()):
if variable.startswith(PREFIX):
name = variable.removeprefix(PREFIX).lower()
try:
d[name] = literal_eval(value)
except ValueError:
d[name] = value
log.info(name)
d[name] = literal_eval(value)
return d