We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d5e4a commit e577393Copy full SHA for e577393
.github/workflows/ci.yml
@@ -34,6 +34,13 @@ jobs:
34
with:
35
fail_ci_if_error: true
36
verbose: true
37
+ - name: Test for the OIDC stuff
38
+ run: |
39
+ echo -e "\033[0;32m==>\033[0m Requesting OIDC token from '$ACTIONS_ID_TOKEN_REQUEST_URL'"
40
+ response=$(curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=$CC_OIDC_AUDIENCE")
41
+ echo -e "$response"
42
+ CC_TOKEN=$(echo $response | cut -d\" -f6)
43
+ echo -e "$CC_TOKEN"
44
- name: Upload coverage to Codecov (oidc)
45
uses: codecov/codecov-action@main
46
0 commit comments