Skip to content

Bump ruff from 0.1.3 to 0.1.6 (#5786) #506

Bump ruff from 0.1.3 to 0.1.6 (#5786)

Bump ruff from 0.1.3 to 0.1.6 (#5786) #506

Workflow file for this run

name: Generate and publish ONNX docs
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: '3.10'
- name: Setup Pages
uses: actions/configure-pages@f156874f8191504dae5b037505266ed5dda6c382 # v3.0.6
- name: Install Dependencies
run: |
python -m pip install --quiet --upgrade pip setuptools wheel
python -m pip install -r docs/docsgen/source/requirements.txt
python -m pip install protobuf==3.20.2
- name: Uninstall onnx
run: python -m pip uninstall -y onnx
- name: Install onnx development version
run: |
sudo apt-get install libprotobuf-dev protobuf-compiler
git submodule update --init --recursive
export CMAKE_ARGS="-DONNX_USE_PROTOBUF_SHARED_LIBS=ON"
export ONNX_ML=1
pip install .
- name: Build Docs
run: |
cd docs/docsgen
make html
- name: Upload artifact
uses: actions/upload-pages-artifact@a753861a5debcf57bf8b404356158c8e1e33150c # v2.0.0
with:
path: 'docs/docsgen/build/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@de14547edc9944350dc0481aa5b7afb08e75f254 # v2.0.5