Add one example to show how to steal and dump intermediate inputs (#142) #132
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: Build Any Wheel | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'releases/**' | |
| jobs: | |
| build_wheels: | |
| name: Build wheels on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: build wheel | |
| run: python -m pip wheel . -v | |
| - name: install twine | |
| run: python -m pip install twine | |
| - name: check wheel | |
| run: python -m twine check ./onnx_diagnostic*.whl | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: ./onnx_diagnostic*.whl |