bit-banger: increase clk_div to two bytes. #1741
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: Pub Python dist to TestPyPi | |
| on: push | |
| jobs: | |
| build-n-publish: | |
| name: Build/pub python to testpypi | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python 3.11 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| - name: Build ChipWhisperer | |
| run: | | |
| python -m pip install build | |
| python -m build | |
| - name: Publish to pypi | |
| if: startsWith(github.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@master | |
| with: | |
| password: ${{ secrets.py_pi_deploy }} |