1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
name: Distribution
on:
push:
branches-ignore:
- renovate/**
tags:
- '*'
pull_request:
permissions:
contents: read
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: 3.14
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
with:
enable-cache: false
- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgettextpo-dev
- name: Build pakcage
run: uv build
- name: Twine check
run: uvx twine check dist/*
- name: pydistcheck
run: uvx pydistcheck --inspect dist/*
- name: pyroma
run: uvx pyroma dist/*.tar.gz
- name: check-wheel-contents
run: uvx check-wheel-contents dist/*.whl
- name: check-manifest
run: uvx check-manifest -v
- name: Install test (source)
run: |
uv venv test-ttk-release-src
. ./test-ttk-release-src/bin/activate
uv pip install dist/translate_toolkit-*.tar.gz
moz2po --help
python ./test-ttk-release-src/lib/python*/site-packages/translate/lang/identify.py README.rst
- name: Install test (wheel)
run: |
uv venv test-ttk-release-whl
. ./test-ttk-release-whl/bin/activate
uv pip install dist/translate_toolkit*.whl
moz2po --help
python ./test-ttk-release-whl/lib/python*/site-packages/translate/lang/identify.py README.rst
- uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
name: setup
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
path: ./dist/*
pypi-publish:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
needs:
- setup
runs-on: ubuntu-24.04
permissions:
# this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
name: artifact
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
github-publish:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
needs:
- setup
runs-on: ubuntu-24.04
permissions:
# this permission is mandatory for creating a release
contents: write
steps:
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
name: artifact
path: dist
- uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0
with:
artifacts: dist/*
|