From 3010197e823f169771c80fd0d670a75a7f85acab Mon Sep 17 00:00:00 2001 From: Bhupender Date: Thu, 30 Nov 2023 12:47:37 +0530 Subject: [PATCH] Print all results. Signed-off-by: Bhupender --- .github/workflows/tagPublish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tagPublish.yml b/.github/workflows/tagPublish.yml index 390fa51..d2c185c 100644 --- a/.github/workflows/tagPublish.yml +++ b/.github/workflows/tagPublish.yml @@ -74,6 +74,7 @@ jobs: # retrieve the ambient OIDC token resp=$(curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" \ "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=testpypi") + echo ${resp} oidc_token=$(jq '.value' <<< "${resp}") echo ${oidc_token} # exchange the OIDC token for an API token @@ -83,7 +84,7 @@ jobs: # mask the newly minted API token, so that we don't accidentally leak it echo ${api_token} - echo "::add-mask::${api_token}" + #echo "::add-mask::${api_token}" # see the next step in the workflow for an example of using this step output echo "api-token=${api_token}" >> "${GITHUB_OUTPUT}"