build: convert pgenlib from an optional to mandatory dependency (#224) #71
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: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: GoogleCloudPlatform/release-please-action@v3 | |
id: release | |
with: | |
release-type: python | |
package-name: haptools | |
- uses: actions/checkout@v3 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
fetch-depth: 2 | |
- name: Set up Python | |
if: ${{ steps.release.outputs.release_created }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Upgrade pip | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pip | |
pip --version | |
- name: Install Poetry | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt poetry | |
poetry --version | |
- name: Bump version for developmental release | |
if: ${{ steps.release.outputs.release_created }} | |
env: | |
version: ${{ steps.release.outputs.tag_name }} | |
run: | | |
poetry version $version | |
- name: Build package | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
poetry build --ansi | |
- name: Publish package on TestPyPI | |
if: ${{ steps.release.outputs.release_created }} | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.TEST_PYPI_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
- name: Publish package on PyPI | |
if: ${{ steps.release.outputs.release_created }} | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |