From 0411345f7a4197b640d45be199768921821fa4a2 Mon Sep 17 00:00:00 2001 From: rettichlp Date: Mon, 22 May 2023 17:32:02 +0200 Subject: [PATCH] Fix StrictHostKeyChecking --- .github/workflows/wiki_test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wiki_test.yml b/.github/workflows/wiki_test.yml index c70ce961b..12bd1ffb1 100644 --- a/.github/workflows/wiki_test.yml +++ b/.github/workflows/wiki_test.yml @@ -40,8 +40,6 @@ jobs: needs: [ build,setup-ssh ] steps: - name: Deploy to server - run: | - ssh -o StrictHostKeyChecking=no - scp -r site/ ssh@rettichlp.de:/unicacityaddon_wiki + run: scp -o StrictHostKeyChecking=no -r site/ ssh@rettichlp.de:/unicacityaddon_wiki - name: Execute update script - run: ssh ssh@rettichlp.de powershell -InputFormat None -F '"C:\Users\ssh\Desktop\update_unicacityaddon_wiki.ps1"' \ No newline at end of file + run: ssh -o StrictHostKeyChecking=no ssh@rettichlp.de powershell -InputFormat None -F '"C:\Users\ssh\Desktop\update_unicacityaddon_wiki.ps1"' \ No newline at end of file