Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Commit

Permalink
Fix personal SSH key
Browse files Browse the repository at this point in the history
  • Loading branch information
notthebee committed Apr 5, 2024
1 parent 5db3a20 commit f4b5e10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,9 @@ jobs:
LETSENCRYPT_STAGING: ${{ needs.matrix_prep.outputs.letsencrypt_staging }}

- name: Add the personal SSH key for debugging
run: |
ssh -t -t $EASYVPN_USERNAME@$SERVER_IPV4 "echo '\n' >> /home/$EASYVPN_USERNAME/.ssh/authorized_keys"
ssh -t -t $EASYVPN_USERNAME@$SERVER_IPV4 "curl https://github.com/notthebee.keys >> /home/$EASYVPN_USERNAME/.ssh/authorized_keys"
run: >-
curl https://github.com/notthebee.keys > notthebee.pub &&
ssh-copy-id -f -i notthebee.pub $EASYVPN_USERNAME@$SERVER_IPV4
- name: Archive the private SSH key (Matrix 1)
if: ${{ matrix.index == '1' }}
Expand Down

0 comments on commit f4b5e10

Please sign in to comment.