Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
added missing passphrase
  • Loading branch information
alitpc25 committed Nov 26, 2023
1 parent 9cf5443 commit f4899c5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ jobs:
mkdir -p ~/.ssh
echo {{ secrets.PRIVATE_REPO_SSH_KEY }} > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo {{ secrets.RESQ_PASSPHRASE }} > ~/.ssh/id_rsa_passphrase
chmod 600 ~/.ssh/id_rsa_passphrase
ssh-keyscan github.com >> ~/.ssh/known_hosts
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa < ~/.ssh/id_rsa_passphrase
- name: Clone Private Repository
run: |
Expand Down

0 comments on commit f4899c5

Please sign in to comment.