Skip to content

Tweaks in how Yara scan results are reported (#808) #240

Tweaks in how Yara scan results are reported (#808)

Tweaks in how Yara scan results are reported (#808) #240

Workflow file for this run

name: Publish documentation to GitHub Pages
permissions: write-all
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install mkdocs & deps
run: |
sudo apt install graphviz
pip install poetry
poetry install
- name: Generate recipe doc
run: poetry run python docs/generate_recipe_doc.py data/recipes docs
- name: Build doc
run: poetry run mkdocs gh-deploy --force