Skip to content

Commit f9c2178

Browse files
committed
Update eval.yml
1 parent 014da80 commit f9c2178

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/eval.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ jobs:
1515
steps:
1616
- name: Check that REPO_GEMINI_API_KEY is set and available
1717
env:
18+
# REPO_GEMINI_API_KEY is expected to be set in the repository secrets
19+
# See https://docs.github.com/en/actions/security-guides/encrypted-secrets
1820
GEMINI_API_KEY: ${{ secrets.REPO_GEMINI_API_KEY }}
1921
run: |
2022
if [ -z "$GEMINI_API_KEY" ]; then
21-
echo "ERROR: GEMINI_API_KEY is not set"
23+
echo "ERROR: REPO_GEMINI_API_KEY is not set"
2224
exit 1
2325
fi
2426
echo "GEMINI_API_KEY has ${#GEMINI_API_KEY} characters"

0 commit comments

Comments
 (0)