Disabling host check (not a big deal since we are only downloading files from the host)

This commit is contained in:
David Négrier 2021-06-11 14:06:08 +02:00
parent 9330a3ec89
commit 8b5055c7ef
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ jobs:
CERTS_PRIVATE_KEY: ${{ secrets.CERTS_PRIVATE_KEY }}
- name: Download certificate
run: mkdir secrets && scp -i secret.key ubuntu@cert.workadventu.re:./config/live/workadventu.re/* secrets/
run: mkdir secrets && scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i secret.key ubuntu@cert.workadventu.re:./config/live/workadventu.re/* secrets/
- name: Install certificates in namespace
uses: steebchen/kubectl@v1.0.0