Skip to content

Add Uint8 InnerProduct metric and centralize CPU instruction set reso… #2

Add Uint8 InnerProduct metric and centralize CPU instruction set reso…

Add Uint8 InnerProduct metric and centralize CPU instruction set reso… #2

Workflow file for this run

name: Trigger Docs Build
on:
push:
branches:
- main
tags:
- 'v*.*.*'
paths:
- 'docs/**'
- 'python/**'
- '.readthedocs.yaml'
- '.github/workflows/docs.yml'
workflow_dispatch:
jobs:
trigger-rtd:
runs-on: ubuntu-latest
steps:
- name: Trigger Read the Docs Webhook
if: env.RTD_WEBHOOK_URL != ''
env:
RTD_WEBHOOK_URL: ${{ secrets.RTD_WEBHOOK_URL }}
run: |
REF_NAME="${{ github.ref_name }}"
if [ "${{ github.ref_type }}" = "tag" ]; then
echo "Triggering RTD build for tag: ${REF_NAME}"
curl -sS -X POST -d "branches=${REF_NAME}" "${RTD_WEBHOOK_URL}"
else
echo "Triggering RTD build for branch: ${REF_NAME}"
curl -sS -X POST -d "branches=${REF_NAME}" "${RTD_WEBHOOK_URL}"
fi