Skip to content

Build and publish python package #5

Build and publish python package

Build and publish python package #5

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.GITHUB_TOKEN }}
PUBLISH_REGISTRY_PASSWORD: ${{ secrets.PYPI_TOKEN }}
PUBLISH_REGISTRY: "https://test.pypi.org/simple/"
BRANCH: "main"
POETRY_VERSION: "1.1.7"