Skip to content

Commit

Permalink
Merge branch 'main' of github.com:genepi/michigan-imputationserver
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor committed Sep 17, 2024
2 parents 13f21d3 + 82260ea commit d9be30d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish Docs

on:
push:
branches:
- main

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install JDK 11
uses: actions/setup-java@v1
with:
java-version: 11

- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install MkDocs Material
run: pip install mkdocs-material

- name: Deploy MkDocs
run: |
git fetch origin gh-pages:gh-pages
mkdocs gh-deploy --force
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d9be30d

Please sign in to comment.