Skip to content

Added a simple space to run workflow automatically test2 #8

Added a simple space to run workflow automatically test2

Added a simple space to run workflow automatically test2 #8

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Dependencies
run: pip install mkdocs mkdocs-material
- name: Deploy to GitHub Pages
run: |
cd my_project
mkdocs gh-deploy --force