Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 5, 2026. It is now read-only.

Add external links to base template and fix email link #38

Add external links to base template and fix email link

Add external links to base template and fix email link #38

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r Intrudex-Server/requirements.txt
- name: Build Documentation
run: mkdocs build --site-dir site
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
publish_branch: gh-pages