Skip to content

Commit

Permalink
Fix ESMPY_WEB_DEPLOY_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
danrosen25 authored Aug 23, 2023
1 parent f53a1b7 commit 6137705
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-esmpy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
- name: Setup deployment
run: |
mkdir -p ~/.ssh
if [ -z "${{secrets.ESMF_WEB_DEPLOY_KEY}}" ]; then
echo "ERROR: Missing ESMF_WEB_DEPLOY_KEY!"
if [ -z "${{secrets.ESMPY_WEB_DEPLOY_KEY}}" ]; then
echo "ERROR: Missing ESMPY_WEB_DEPLOY_KEY!"
exit 1
fi
echo "${{secrets.ESMF_WEB_DEPLOY_KEY}}" > ~/.ssh/id_rsa
echo "${{secrets.ESMPY_WEB_DEPLOY_KEY}}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
git config --global user.name "ESMF-Bot"
git config --global user.email "[email protected]"
Expand Down

0 comments on commit 6137705

Please sign in to comment.