Skip to content

v7.35.1

v7.35.1 #175

Workflow file for this run

name: Build and publish python package
on:
release:
types: [ published ]
jobs:
publish-service-client-package:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
run: pip install poetry==1.7.1 poetry-core==1.8.1
- name: Build package
run: poetry build
- name: Publish to PyPI
run: poetry publish --username __token__ --password ${{ secrets.PYPI_TOKEN }}