Skip to content

Version 1.0.0 RC2

Version 1.0.0 RC2 #49

Workflow file for this run

name: Release Application
on:
release:
types: [published]
jobs:
pipy:
name: Build and Release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Prepare environment
run: |
python -m pip install --upgrade pip poetry
- name: Build package
run: |
poetry install
make i18n build
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_PASSWORD }}
run: |
poetry publish