Skip to content

Build and publish PyPI artifact #38

Build and publish PyPI artifact

Build and publish PyPI artifact #38

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@v2
- 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_dbt/__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 "[email protected]"
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