Skip to content

Commit

Permalink
debug: add final newline
Browse files Browse the repository at this point in the history
  • Loading branch information
DerTiedemann committed Nov 27, 2024
1 parent 8f92b1b commit 05cb777
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion actions/gcp-gsm-parse-secrets/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ def main(
output.append(parsed_secret)
parsed_secret_names.append(parsed_secret_name)

set_github_action_output("secrets-list", "\n".join(output), github_output_delimter)
set_github_action_output(
"secrets-list", "\n".join(output) + "\n", github_output_delimter
)
# set_github_action_output(
# "secret-names", ",".join(parsed_secret_names), github_output_delimter
# )
Expand Down

0 comments on commit 05cb777

Please sign in to comment.