Skip to content

Commit

Permalink
Updated ssh obtaining
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanRuzavin committed Jul 12, 2024
1 parent 6cfb553 commit 9254f93
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/recursiveBuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ jobs:
env:
DEPLOY_SSH: ${{ secrets.DEPLOY_PRIVATE_SSH }}
run: |
echo "$DEPLOY_SSH" >> ssh_key
chmod 400 ssh_key
mkdir -p ~/.ssh
chmod 700 ~/.ssh
echo "$DEPLOY_SSH" >> ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
eval `ssh-agent`
ssh-add ssh_key
ssh-add ~/.ssh/id_rsa
- name: Clone SDK repo
run: |
Expand Down

0 comments on commit 9254f93

Please sign in to comment.