Skip to content

v1.1.0

v1.1.0 #6

Workflow file for this run

name: Upload Python Package
on:
release:
types: [published]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install twine
run: pip install twine
- name: Publish package
run: |
python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/portfolioperformance-1.1.0-py3-none-any.whl
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PORTFOLIOPERFORMANCE_PYPI_API_TOKEN }}