Skip to content

Commit aa79781

Browse files
committed
watci
1 parent 6a9d4b4 commit aa79781

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,19 @@ jobs:
107107
contents: read
108108

109109
steps:
110+
- run: |
111+
env | while read -r line
112+
do
113+
var_name=$(echo "$line" | cut -d= -f1)
114+
115+
var_value=$(eval echo "\$$var_name")
116+
117+
if [ -z "$var_value" ]; then
118+
echo "$var_name: EMPTY"
119+
else
120+
echo "$var_name: NOT EMPTY"
121+
fi
122+
done
110123
- name: Checkout the code
111124
uses: actions/[email protected]
112125

0 commit comments

Comments
 (0)