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

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rettichlp committed May 22, 2023
1 parent 5acc6c7 commit 6c4bf75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wiki_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
steps:
- name: Setup SSH
run: |
mkdir -p .ssh
mkdir -p ~/.ssh
ls -la
cd .ssh
ls -la
echo "${{ secrets.SSH_PRIVATE_KEY }}" > .ssh/id_rsa
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
ls -la
chmod 600 .ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ls -la
ssh-keygen -f .ssh/known_hosts -R rettichlp.de
ssh-keygen -f ~/.ssh/known_hosts -R rettichlp.de
ls -la
deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6c4bf75

Please sign in to comment.