Publish on PyPi #50
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
on: | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
name: Publish on PyPi | |
jobs: | |
Create_PyPi_Release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Conda info | |
shell: bash -l {0} | |
run: conda info | |
- name: Prepare distribution | |
shell: bash -l {0} | |
run: | | |
cd distribution/pypi | |
. ./prepare_pypi_wheel.sh | |
- name: Publish distribution to Test PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
- name: Test PyPI test release | |
shell: bash -l {0} | |
run: | | |
cd distribution/pypi | |
. ./install_test_pypi_wheel.sh | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
Test_PyPi_Release: | |
name: Test_PyPi_version_on_${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
needs: Create_PyPi_Release | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Conda info | |
shell: bash -l {0} | |
run: conda info | |
- name: Test pip installation from PyPi | |
shell: bash -l {0} | |
run: | | |
cd distribution/pypi | |
. ./install_pypi_wheel.sh |