v1.0.0 #10
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: Release | |
on: | |
release: | |
types: [created] | |
jobs: | |
release-job: | |
runs-on: ubuntu-latest | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install building tools | |
run: | | |
pip install build twine | |
- name: Build package | |
run: | | |
python -m build --sdist | |
python -m build --wheel | |
- name: Publish to PyPI | |
run: | | |
twine check dist/* | |
twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN} dist/* | |
test-install-job: | |
needs: release-job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '>=3.9 <=3.12' | |
- name: Give PyPI a chance to update the index | |
run: sleep 150 | |
- name: Install from PyPI | |
run: | | |
pip install gearpy |