8000 Merge remote-tracking branch 'origin/main' · coding-kitties/investing-algorithm-framework@7c38484 · GitHub
[go: up one dir, main page]

Skip to content

v7.16.4

v7.16.4 #100

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"
0