Skip to content

Update Rizin to the latest dev (#3380) #311

Update Rizin to the latest dev (#3380)

Update Rizin to the latest dev (#3380) #311

Workflow file for this run

name: Docs
on:
push:
branches:
- dev
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
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 "[email protected]"
bash scripts/deploy_docs.sh