Skip to content

Commit

Permalink
fix: export all secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
DerTiedemann committed Nov 27, 2024
1 parent c124c48 commit af63a83
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions actions/gcp-gsm-load-secrets/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ runs:
uses: "actions/github-script@v7"
with:
script: |
console.log('test')
let a = ${{ toJSON(steps.secrets.outputs) }}
console.log(a)
let secrets = ${{ toJSON(steps.secrets.outputs) }}
for (const [key, value] of Object.entries(secrets)) {
core.setOutput(key, value);
}

0 comments on commit af63a83

Please sign in to comment.