Skip to content

meta: bump version to 0.4.3 #6

meta: bump version to 0.4.3

meta: bump version to 0.4.3 #6

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
env:
LOCALE_MANDATORY: '1'
steps:
- run: sudo apt-get update
- run: sudo apt-get install gettext
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-python@v5
with:
cache: pip
cache-dependency-path: pyproject.toml
python-version: "3.11"
- run: pip install build
- run: python -m build
- uses: actions/upload-artifact@v4
with:
name: dist-${{ runner.os }}
path: dist/
publish:
environment: release
runs-on: ubuntu-latest
permissions:
id-token: write
needs:
- build
steps:
- uses: actions/download-artifact@v4
with:
pattern: dist-*
path: dist/
merge-multiple: true
- uses: pypa/[email protected]