Add support for parsing simple brevitas layers as part of pytorch models #1754
Workflow file for this run
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: 📦 Packaging release to PyPI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| release: | |
| types: [published] | |
| jobs: | |
| release: | |
| name: Upload new release to PyPI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Build SDist and Wheel | |
| run: pipx run build --sdist --wheel | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: dist/*.* | |
| - name: Publish 📦 to PyPI | |
| if: startsWith(github.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| password: ${{ secrets.PYPI_PASSWORD }} |