Create docs.yml

This commit is contained in:
Eugene 2019-08-26 22:03:36 +02:00 committed by GitHub
parent d82b0b4661
commit 3c2af3045d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
.github/workflows/docs.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Docs
on: push
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Installing Node
uses: actions/setup-node@v1
with:
version: 10
- name: Build
run: |
apt-get install openssh-client
npm i -g yarn
ssh-add <(echo "$DOCS_PRIVATE_KEY")
yarn
yarn run docs
rsync -e "ssh -o StrictHostKeyChecking=no" -arv docs/api/ root@ajenti.org:/srv/terminus-docs/
env:
DOCS_PRIVATE_KEY: ${{ secrets.DOCS_PRIVATE_KEY }}