Skip to content

Initial commit - Google Security Suite documentation #12

Initial commit - Google Security Suite documentation

Initial commit - Google Security Suite documentation #12

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Deploy MkDocs
run: mkdocs gh-deploy --force