Skip to content

Commit

Permalink
added gh-pages action
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgandarias committed Nov 30, 2024
1 parent 6ca69d1 commit 990b76f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: gh-pages
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install \
mkdocs-material \
mkdocs-awesome-pages-plugin \
mkdocs-git-revision-date-localized-plugin \
mkdocs-redirects \
- run: mkdocs gh-deploy --force

0 comments on commit 990b76f

Please sign in to comment.