Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Version 0.11.1

Version 0.11.1 #13

Workflow file for this run

name: Upload Python Package
on:
release:
types: [created]
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build and publish
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
poetry publish --build --username "$PYPI_USERNAME" --password "$PYPI_PASSWORD"