Skip to content

7.17.0 - Touching Re-Union #177

7.17.0 - Touching Re-Union

7.17.0 - Touching Re-Union #177

Workflow file for this run

name: Bump version and dockerize
on:
release:
types: [published]
workflow_dispatch:
inputs:
version:
description: Version for publishing
required: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: main
- 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 builder
run: |
python -m pip install poetry pip
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 "github-actions@github.com"
git config --global user.name "github-actions"
- name: Commit changes
env:
VERSION: ${{ steps.version.outputs.result }}
run: |
git add pyproject.toml
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
poetry build
poetry run twine upload --non-interactive dist/*
- name: Dockerize
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
scripts/dockerize.sh