rename deploy key variable
This commit is contained in:
parent
0aece45a9c
commit
1de88c00b8
2 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
set -e
|
||||
eval $(ssh-agent -s)
|
||||
echo "$GITLAB_DEPLOY_KEY" | base64 -d | tr -d '\r' | ssh-add - > /dev/null
|
||||
echo "$SSH_DEPLOY_KEY" | base64 -d | tr -d '\r' | ssh-add - > /dev/null
|
||||
|
||||
mkdir -p ~/.ssh
|
||||
chmod 700 ~/.ssh
|
||||
|
|
|
@ -9,6 +9,8 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: Setup git credentials and committer
|
||||
run: .ci/configure_git.sh
|
||||
env:
|
||||
SSH_DEPLOY_KEY: ${{ secrets.ssh_deploy_key }}
|
||||
- name: Clone build repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue