2.0.0 - New Version Indeed #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: Bump version and release | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version for publishing | |
required: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Get version | |
id: version | |
uses: actions/github-script@v6 | |
with: | |
result-encoding: string | |
script: | | |
if (context.payload.inputs && context.payload.inputs.version) { | |
return context.payload.inputs.version | |
} | |
return context.ref.split('/').pop() | |
- name: Install dependencies | |
run: | | |
python -m pip install -U poetry pip wheel | |
poetry config virtualenvs.create false | |
poetry install -n | |
- name: Bump version | |
env: | |
VERSION: ${{ steps.version.outputs.result }} | |
run: | | |
echo "Bumping version to ${VERSION}" | |
poetry version ${VERSION} | |
rm -rf *.egg-info || true | |
poetry install -n | |
- name: Set up git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "github-actions" | |
- name: Commit changes | |
env: | |
VERSION: ${{ steps.version.outputs.result }} | |
run: | | |
git add pyproject.toml | |
git add setup.cfg | |
git commit -m "Release ${VERSION}" | |
git push | |
- name: Publish to PyPI | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
poetry run pip install -U twine wheel | |
poetry build | |
twine upload --non-interactive dist/* |