Skip to content

pytest-bdd-ng-2.3.0 #21

pytest-bdd-ng-2.3.0

pytest-bdd-ng-2.3.0 #21

Workflow file for this run

---
name: Upload Python Package
on: # yamllint disable-line rule:truthy
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install pandoc
uses: r-lib/actions/setup-pandoc@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip build twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m build
twine upload dist/*