Adds v2 of the courses API for the program page (#1983) #932
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Documentation | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-20.04 | |
name: Publish Documentation | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install ghp-import | |
run: pip install ghp-import | |
- name: Build documentation | |
run: "./pants docs ::" | |
- name: Publish Documentation | |
run: ghp-import --push --force --no-history --no-jekyll dist/sphinx/ |