Skip to content

[chores] Fixed PyPI workflow #4

[chores] Fixed PyPI workflow

[chores] Fixed PyPI workflow #4

Workflow file for this run

name: Publish Python Package to Pypi.org
on:
push:
branches:
- fix-pypi-workflow
permissions:
id-token: write
jobs:
pypi-publish:
name: Release Python Package on Pypi.org
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/netdiff
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -U pip
pip install build
- name: Build package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/[email protected]
with:
verbose: true
env:
DEBUG: >-
true