Skip to content

Commit

Permalink
Added publish docs action
Browse files Browse the repository at this point in the history
  • Loading branch information
alollo-ca committed Apr 20, 2022
1 parent af4ea3d commit c52464f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish docs

on:
workflow_dispatch

jobs:
build-and-publish-docs:
name: Build and publish docs
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build docs
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade --upgrade-strategy eager -e .[dev]
mkdocs build
- name: Publish docs
uses: JamesIves/[email protected]
with:
branch: docs
folder: site

0 comments on commit c52464f

Please sign in to comment.