Skip to content

Create sast.yaml

Create sast.yaml #1

Workflow file for this run

name: Docs Generator
on:
push:
branches:
- master
jobs:
generateDOC:
name: Docs Generator
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Update Contributors
uses: akhilmhdh/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
image_size: 100
columns_per_row: 6
readme_path: docs/contributors.md
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install Mkdocs Material
run: pip install mkdocs-material
- name: Install Macros for Mkdocs
run: pip install mkdocs-macros-plugin
- name: Deploy mkdocs to gh-pages branch
run: mkdocs gh-deploy --force