v1.3 #2
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-pipeline | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
release-job: | |
runs-on: ubuntu-latest | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install release tooling | |
run: | | |
pip install twine wheel numpy setuptools versioneer | |
- name: Build package | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Check version number match | |
run: | | |
echo "GITHUB_REF: ${GITHUB_REF}" | |
# The GITHUB_REF should be something like "refs/tags/v1.2.3" | |
# Make sure the package version is the same as the tag | |
grep -Rq "^Version: ${GITHUB_REF:11}$" tsdisagg.egg-info/PKG-INFO | |
- 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@v5 | |
with: | |
python-version: 3.7 | |
- name: Give PyPI a chance to update the index | |
run: sleep 240 | |
- name: Install from PyPI | |
run: | | |
pip install tsdisagg==${GITHUB_REF:11} |