Skip to content

Commit

Permalink
debug: uncomment secret names + add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
DerTiedemann committed Nov 27, 2024
1 parent 05cb777 commit c8305c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions actions/gcp-gsm-load-secrets/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ runs:
with:
secrets: ${{ steps.parse_secrets.outputs.secrets-list }}
export_to_environment: ${{ inputs.export-to-environment }}
- name: "test"
run: |
echo '${{ toJSON(steps.secrets.outputs) }}'
- name: "Set outputs"
uses: "actions/github-script@v7"
with:
Expand Down
6 changes: 3 additions & 3 deletions actions/gcp-gsm-parse-secrets/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ def main(
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
# )
set_github_action_output(
"secret-names", ",".join(parsed_secret_names), github_output_delimter
)


if __name__ == "__main__":
Expand Down

0 comments on commit c8305c2

Please sign in to comment.