Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,13 @@ runs:
command: stepzen login ${{ inputs.domain }} --account ${{ inputs.account }} --adminkey ${{ inputs.adminkey }}
- id: output
run: |
xxapikey='secret-1'
apikey=$(stepzen whoami --apikey)
echo "::add-mask::${apikey}"
# echo "::add-mask::${xxapikey}"
echo "domain=$(stepzen whoami --domain)" >> $GITHUB_OUTPUT
echo "account=${{ inputs.account }}" >> $GITHUB_OUTPUT
echo "apikey=${apikey}" >> $GITHUB_OUTPUT
echo "apikey=${xxapikey}" >> $GITHUB_OUTPUT
echo START
cat $GITHUB_OUTPUT
echo END
shell: bash