Skip to content

refactor: make the test fixtures agnostic from the invocation path (#34) #9

refactor: make the test fixtures agnostic from the invocation path (#34)

refactor: make the test fixtures agnostic from the invocation path (#34) #9

Workflow file for this run

name: publish
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Dependencies
run: |
pip install .
pip install setuptools wheel twine
- name: Deploy
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
env:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_USERNAME: kronenthaler