Skip to content

Merge pull request #125 from ColibrITD-SAS/Henri-ColibrITD-patch-1 #13

Merge pull request #125 from ColibrITD-SAS/Henri-ColibrITD-patch-1

Merge pull request #125 from ColibrITD-SAS/Henri-ColibrITD-patch-1 #13

Workflow file for this run

name: Pipy publishing
on:
push:
tags:
- "*"
jobs:
build_publish_package:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies
run: |
pip install -r requirements-dev.txt
- name: Build Package
run: python setup.py sdist bdist_wheel
- name: Install Twine
run: |
pip install twine
pip install -U packaging
- name: Publish to PyPI
run: |
twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PRD_QT_API_TOKEN }}