Skip to content

Commit

Permalink
ci(docs): add workflow for building development docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Icikowski committed Jan 6, 2023
1 parent f07eab1 commit 39535d0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build development docs

on:
push:
branches: [ main ]
paths:
- "docs/**"

jobs:
deploy:
name: Build and publish documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Task
uses: arduino/setup-task@v1
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Prepare required Python packages
run: task docs:requirements
- name: Build and deploy documentation
run: task docs:deploy-dev

0 comments on commit 39535d0

Please sign in to comment.