Skip to content

feat(cypher): add local CALL backend procedure families (#949) #188

feat(cypher): add local CALL backend procedure families (#949)

feat(cypher): add local CALL backend procedure families (#949) #188

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on:
push:
tags:
- '*'
workflow_dispatch:
#TODO: Gate last step on release create? Unclear how to do the step's `if`
#release:
# types: [created]
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
with: # fetch tag for versioneer
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install pypa/build
run: >-
python -m pip install -e .[build]
- name: Build a binary wheel and a source tarball
run: >-
./bin/build.sh
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
attestations: true
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
attestations: false