ci: use the correct variable name

This commit is contained in:
goaaats 2021-04-10 03:47:22 +02:00 committed by GitHub
parent ad0618deed
commit 2a585e8d5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,11 +75,11 @@ jobs:
- name: Commit changes
shell: bash
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
DEPLOY_SSH: ${{ secrets.DEPLOY_SSH }}
GIT_SSH_COMMAND: "ssh -o StrictHostKeyChecking=no"
run: |
eval "$(ssh-agent -s)"
ssh-add - <<< "${DEPLOY_KEY}"
ssh-add - <<< "${DEPLOY_SSH}"
git config --global user.name "Actions User"
git config --global user.email "actions@github.com"