From 9420918decc3a5829389cc1da571a3c0839b54ad Mon Sep 17 00:00:00 2001 From: rettichlp Date: Mon, 22 May 2023 18:23:17 +0200 Subject: [PATCH] Remove external action --- .github/workflows/wiki_test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wiki_test.yml b/.github/workflows/wiki_test.yml index c0876bac5..366b7aa2c 100644 --- a/.github/workflows/wiki_test.yml +++ b/.github/workflows/wiki_test.yml @@ -31,10 +31,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup SSH - uses: kielabokkie/ssh-key-and-known-hosts-action@v1.3.5 - with: - ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - ssh-host: rettichlp.de + run: | + mkdir -p .ssh + echo "${{ secrets.SSH_PRIVATE_KEY }}" >> .ssh/id_rsa + chmod 600 .ssh/id_rsa + ssh-keygen -R rettichlp.de deploy: runs-on: ubuntu-latest needs: [ build,setup-ssh ]