Merge pull request #475 from databrickslabs/srid-kepler #261
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: docs | |
on: | |
push: | |
branches: | |
- main | |
- feature/docs_fix | |
- feature/new_docs | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install pandoc | |
run: sudo apt-get install pandoc | |
- uses: actions/setup-python@v2 | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref }} | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
- name: Build and Commit | |
uses: sphinx-notes/pages@v2 | |
with: | |
documentation_path: docs/source | |
requirements_path: docs/docs-requirements.txt | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages |