Update to set python executable version in windows github workflow ym… #234
Workflow file for this run
This file contains 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: PyPI Testing Deploy | |
on: [push, pull_request] | |
jobs: | |
PyPITestingDeploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
bash ./.github/scripts/install_dependencies.sh USER | |
bash ./.github/scripts/install_genalyzer.sh | |
sudo rm -rf build | |
mkdir build && cd build && cmake .. -DPYTHON_BINDINGS=ON && cd .. | |
pip install setuptools wheel twine build | |
- name: Update to dev version and build test release | |
run: | | |
pip install invoke | |
invoke bumpversion-test | |
cd build/bindings/python | |
python -m build | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
if: github.ref == 'refs/heads/main' | |
with: | |
user: __token__ | |
password: ${{ secrets.TEST_PYPI_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
packages_dir: ./build/bindings/python/dist |