Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions .github/workflows/release-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release Python

on:
push:
branches: [release/*]
branches: [ release/* ]

jobs:
release:
Expand All @@ -21,6 +21,17 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: cucumber/[email protected]

- name: Show Python version
run: python --version

- name: Check build
run: |
python -m pip install build twine
python -m build
twine check --strict dist/*

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
working-directory: "python"
packages-dir: python/dist
Loading