removing white space #3
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: mkdocs-release | |
on: | |
push: | |
branches: [ branch-* ] | |
jobs: | |
publish-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: install deps | |
run: pip3 install pip==22.0.3 && pip3 install 'git+https://github.com/logicalclocks/feature-store-api@master#egg=hsfs[docs]&subdirectory=python' mkdocs-minify-plugin | |
- name: setup git | |
run: | | |
git config --global user.name Mike | |
git config --global user.email mike@docs.hopsworks.ai | |
# Put this back and increment version when cutting a new release branch | |
- name: mike deploy docs | |
run: mike deploy 3.5 latest -u --push |