Cleanup Build & Release Documentation action
This commit is contained in:
parent
51d4ce51e0
commit
a2c85cc7a5
30
.github/workflows/build-docs.yml
vendored
30
.github/workflows/build-docs.yml
vendored
@ -25,12 +25,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
checks:
|
checks:
|
||||||
if: github.event_name != 'push'
|
if: github.event_name != 'push'
|
||||||
|
name: Build Documentation
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: '12.x'
|
|
||||||
|
|
||||||
- name: Get yarn cache directory path
|
- name: Get yarn cache directory path
|
||||||
id: yarn-cache-dir-path
|
id: yarn-cache-dir-path
|
||||||
@ -51,23 +49,10 @@ jobs:
|
|||||||
yarn build
|
yarn build
|
||||||
gh-release:
|
gh-release:
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
|
name: Build & Release Documentation
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- 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 <<EOT >> ~/.ssh/config
|
|
||||||
Host github.com
|
|
||||||
HostName github.com
|
|
||||||
IdentityFile ~/.ssh/id_rsa
|
|
||||||
EOT
|
|
||||||
|
|
||||||
- name: Get yarn cache directory path
|
- name: Get yarn cache directory path
|
||||||
id: yarn-cache-dir-path
|
id: yarn-cache-dir-path
|
||||||
@ -84,13 +69,14 @@ jobs:
|
|||||||
- name: Release to GitHub Pages
|
- name: Release to GitHub Pages
|
||||||
env:
|
env:
|
||||||
USE_SSH: true
|
USE_SSH: true
|
||||||
GIT_USER: git
|
GIT_USER: github-actions
|
||||||
CURRENT_BRANCH: main
|
CURRENT_BRANCH: main
|
||||||
DEPLOYMENT_BRANCH: gh-pages
|
DEPLOYMENT_BRANCH: gh-pages
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
git config --global user.email "actions@github.com"
|
date > generated.txt
|
||||||
git config --global user.name "gh-actions"
|
git config user.name github-actions
|
||||||
|
git config user.email github-actions@github.com
|
||||||
yarn install --frozen-lockfile
|
yarn install --frozen-lockfile
|
||||||
cd docs
|
cd docs
|
||||||
yarn install --frozen-lockfile
|
yarn install --frozen-lockfile
|
||||||
|
Loading…
Reference in New Issue
Block a user