deploy docs (#2616)

This commit is contained in:
Surendrajat 2021-03-03 18:22:37 +05:30 committed by GitHub
parent 6cbf0c0cbf
commit 9601aac6fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

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

@ -0,0 +1,32 @@
name: Docs
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: install dependencies
run: |
sudo apt-get install -y doxygen
pip install -U sphinx breathe sphinx-rtd-theme recommonmark
- name: build docs
run: |
export PATH="/home/runner/.local/bin:$PATH"
cd docs
make html
cd ..
- name: deploy docs
run: |
openssl aes-256-cbc -K ${{ secrets.CUTTER_DOCS_KEY }} -iv ${{ secrets.CUTTER_DOCS_IV }} -in scripts/deploy_docs_rsa.enc -out scripts/deploy_docs_rsa -d
chmod 600 scripts/deploy_docs_rsa
export GIT_SSH_COMMAND="/usr/bin/ssh -i $PWD/scripts/deploy_docs_rsa"
git config --global user.name "Github Actions"
git config --global user.email "actions@github.com"
bash scripts/deploy_docs.sh

Binary file not shown.