From 162e810193247477b2bab5fc03d2a813e3a56e1c Mon Sep 17 00:00:00 2001 From: Alexey Pronin <24279065+vulnbe@users.noreply.github.com> Date: Wed, 21 Jul 2021 13:25:58 +0300 Subject: [PATCH] Fix GA pipeline (#93) * Fix GA pipeline * Update .github/workflows/release.yml Co-authored-by: Yaroslav Rogov Co-authored-by: Yaroslav Rogov --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a95b02..fb90502 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,9 @@ jobs: - name: Build docsite run: npm run build -- ../public - name: Install rsync (dep for github-pages-deploy-action) - run: apt-get update && apt-get install -y rsync + run: | + apt-get update && apt-get install -y rsync + ssh-keyscan -H github.com > ~/.ssh/known_hosts # Necessary for github-pages deploy via ssh-key below - name: Deploy to release branch uses: JamesIves/github-pages-deploy-action@4.1.4 with: