Skip to content

Check author image URLs (#118) #287

Check author image URLs (#118)

Check author image URLs (#118) #287

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
permissions:
contents: write
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.8
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Build docs
env:
GTM_ID: ${{ secrets.GTM_ID }}
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
run: |
curl https://github.com/jgm/pandoc/releases/download/3.1.9/pandoc-3.1.9-1-amd64.deb -L -o /tmp/pandoc.deb
sudo dpkg -i /tmp/pandoc.deb
rm /tmp/pandoc.deb
git clone --depth 1 https://github.com/mlflow/mlflow /tmp/mlflow
pushd /tmp/mlflow
pip install '.[gateway]'
pip install -r requirements/doc-requirements.txt
cd docs
make rsthtml
popd
rm -rf website/static/docs
mkdir -p website/static/docs/latest
cp -r /tmp/mlflow/docs/build/html/* website/static/docs/latest
- name: Install dependencies
working-directory: website
run: yarn
- name: Build website
working-directory: website
env:
BASE_URL: /mlflow-website/
GTM_ID: ${{ secrets.GTM_ID }}
run: yarn build
# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./website/build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
# The GH actions bot is used by default if you didn't specify the two fields.
# You can swap them out with your own user credentials.
# user_name: github-actions[bot]
# user_email: 41898282+github-actions[bot]@users.noreply.github.com