Skip to content

Merge branch 'main' of https://github.com/kuffmode/Pyvizman #2

Merge branch 'main' of https://github.com/kuffmode/Pyvizman

Merge branch 'main' of https://github.com/kuffmode/Pyvizman #2

name: Upload Python Package
on:
push:
branches: main
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1