Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added deploy.yml for automated website deployment
  • Loading branch information
syrettaman committed Aug 8, 2023
commit faca865163b9fa4745df53c08dc2062397bf7ebe
15 changes: 15 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Documentation Deployment
run-name: Deploying to GitHub Pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade pip
- run: pip install mkdocs pymdown-extensions mkdocs-material
- run: mkdocs gh-deploy --force