Add Uint8 InnerProduct metric and centralize CPU instruction set reso… #2
This file contains hidden or 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: 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 |