Skip to content

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: write
steps:
- name: Publish PyPi package
uses: code-specialist/pypi-poetry-publish@v1
with:
ACCESS_TOKEN: ${{ secrets.REPOSITORY_ACCESS_TOKEN }}
PUBLISH_REGISTRY_PASSWORD: ${{ secrets.PYPI_TOKEN }}
BRANCH: "main"
POETRY_VERSION: "1.7.1"
POETRY_CORE_VERSION: "1.8.1"