Skip to content

Commit

Permalink
fix: use SSH_PRIVATE_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
zkrising committed Apr 6, 2024
1 parent 9cc751d commit 1df94f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ jobs:
- name: Enable SSH Key
run: |
mkdir -p ~/.ssh
echo "$TACHI_KEY" > ~/.ssh/id_rsa
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
sudo chmod 600 ~/.ssh/id_rsa
echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
env:
TACHI_KEY: ${{secrets.TACHI_KEY}}
SSH_PRIVATE_KEY: ${{secrets.SSH_PRIVATE_KEY}}
SSH_KNOWN_HOSTS: ${{secrets.SSH_KNOWN_HOSTS}}

- name: Install dependencies
Expand Down

0 comments on commit 1df94f2

Please sign in to comment.