Build and publish PyPI artifact #49
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: Build and publish PyPI artifact | |
on: | |
workflow_dispatch: | |
inputs: | |
bump_rule: | |
description: 'Bump rule' | |
required: true | |
default: 'patch' | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
jobs: | |
build_and_publish_package: | |
name: Build and publish the PyPi package | |
runs-on: ubuntu-latest | |
concurrency: publishing | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
- name: Linting | |
uses: chartboost/ruff-action@v1 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: false | |
- name: Patch package version | |
run: | | |
poetry version ${{ inputs.bump_rule }} | |
echo "VERSION = '$(poetry version -s)'" > odd_cli/__version__.py | |
- name: Run Dockerfile to build and publish package into PyPI | |
run: | | |
docker build . -t ignored \ | |
--build-arg PYPI_USERNAME=${{ secrets.PYPI_USERNAME }} \ | |
--build-arg PYPI_PASSWORD=${{ secrets.PYPI_PASSWORD }} | |
- name: Update repository with up-to-date and version | |
run: | | |
git config --global user.email "opendatadiscovery-bot@provectus.com" | |
git config --global user.name "OpenDataDiscovery Bot" | |
if [ -n "$(git status --porcelain)" ] | |
then | |
git add . | |
git commit -m "chore: bump package version" | |
git push origin main | |
fi |