Skip to content

Commit

Permalink
Create deploy-site.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andreashappe authored Oct 14, 2024
1 parent e139982 commit b118d4e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy-site.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build Github Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- name: Install Dependencies
run: pip install mkdocs-material
- run: mkdocs gh-deploy --force --clean

0 comments on commit b118d4e

Please sign in to comment.