Skip to content

feat: multi-reverse proxys support (#56) #23

feat: multi-reverse proxys support (#56)

feat: multi-reverse proxys support (#56) #23

Workflow file for this run

name: Upload Python Package
on:
workflow_dispatch:
# release:
# types: [published]
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build hatch
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m build
twine upload dist/*