From 630f47da9297026ff9333a8e3a93e27e29e6004e Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Tue, 9 Mar 2021 14:14:54 +0100 Subject: [PATCH] Revert "Cleanup Build & Release Documentation action" This reverts commit a2c85cc7a56206b02d4535825f29ba7af61b642d. --- .github/workflows/build-docs.yml | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 60a8af0..981c8a0 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -25,10 +25,12 @@ on: jobs: checks: if: github.event_name != 'push' - name: Build Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v1 + - uses: actions/setup-node@v1 + with: + node-version: '12.x' - name: Get yarn cache directory path id: yarn-cache-dir-path @@ -49,10 +51,23 @@ jobs: yarn build gh-release: if: github.event_name != 'pull_request' - name: Build & Release Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v1 + + - 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 - name: Get yarn cache directory path id: yarn-cache-dir-path @@ -69,14 +84,13 @@ jobs: - name: Release to GitHub Pages env: USE_SSH: true - GIT_USER: github-actions + GIT_USER: git CURRENT_BRANCH: main DEPLOYMENT_BRANCH: gh-pages github_token: ${{ secrets.GITHUB_TOKEN }} run: | - date > generated.txt - git config user.name github-actions - git config user.email github-actions@github.com + git config --global user.email "actions@github.com" + git config --global user.name "gh-actions" yarn install --frozen-lockfile cd docs yarn install --frozen-lockfile