Skip to content

add aim tracker

add aim tracker #25

Workflow file for this run

name: docs
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'requirements/dev.txt'
- name: Install dependencies
run: |
pip install -e .
pip install -r requirements/dev.txt
pip install -r docs/requirements.txt
- name: Build docs
run: cd docs && make html
- name: Deploy docs
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
accountId: ${{ secrets.CF_ACCOUNT_ID }}
command: pages publish --commit-dirty=true --project-name=pytorch-tao ./docs/build/html