From 967386f4e1a83a214f6faa1982f7a0c865c25917 Mon Sep 17 00:00:00 2001 From: Matan Borenkraout Date: Mon, 22 Feb 2021 17:21:18 +0200 Subject: [PATCH] docs(v2): remove npx and use github action to configure ssh key (#4263) * docs(deployment): remove npx and fix github email * refactor: use ssh configure action instead of own implementation --- website/docs/deployment.mdx | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/website/docs/deployment.mdx b/website/docs/deployment.mdx index c15c261da8..3d5870c424 100644 --- a/website/docs/deployment.mdx +++ b/website/docs/deployment.mdx @@ -183,25 +183,15 @@ jobs: - uses: actions/setup-node@v1 with: node-version: '12.x' - - name: Add key to allow access to repository - env: - SSH_AUTH_SOCK: /tmp/ssh_agent.sock - run: | - mkdir -p ~/.ssh - ssh-keyscan github.com >> ~/.ssh/known_hosts - echo "${{ secrets.GH_PAGES_DEPLOY }}" > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa - cat <> ~/.ssh/config - Host github.com - HostName github.com - IdentityFile ~/.ssh/id_rsa - EOT + - uses: webfactory/ssh-agent@v0.5.0 + with: + ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }} - name: Release to GitHub Pages env: USE_SSH: true GIT_USER: git run: | - git config --global user.email "actions@gihub.com" + git config --global user.email "actions@github.com" git config --global user.name "gh-actions" if [ -e yarn.lock ]; then yarn install --frozen-lockfile @@ -210,7 +200,7 @@ jobs: else npm i fi - npx docusaurus deploy + npm run deploy ``` 1. Now when a new pull request arrives towards your repository in branch `documentation` it will automatically ensure that Docusaurus build is successful.