Skip to content

fixing workflow neo4j driver dependency #180

fixing workflow neo4j driver dependency

fixing workflow neo4j driver dependency #180

Workflow file for this run

name: pypi
on: push
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install setuptools and wheel
run: >-
python -m
pip install
setuptools wheel
--user
- name: Build a binary wheel and a source tarball
run: >-
python
setup.py
sdist bdist_wheel
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.test_pypi_api_token }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_api_token }}