Skip to content

Commit

Permalink
Merge pull request #5 from mohitmishra786/develop
Browse files Browse the repository at this point in the history
workflow
  • Loading branch information
mohitmishra786 authored Dec 20, 2024
2 parents faffd2b + e630360 commit da6efeb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy MkDocs
on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: write

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install -r requirements.txt
- run: mkdocs gh-deploy --force

0 comments on commit da6efeb

Please sign in to comment.