Skip to content

fix(deprecation): fix deprecation warnings on publish and test_publis… #40

fix(deprecation): fix deprecation warnings on publish and test_publis…

fix(deprecation): fix deprecation warnings on publish and test_publis… #40

Workflow file for this run

name: Publish Package
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install --upgrade pip
pip install poetry
- name: Build
run: poetry build
- name: Publish (production)
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}