Skip to content

Merge pull request #382 from HERA-Team/support-future-array-shapes #1

Merge pull request #382 from HERA-Team/support-future-array-shapes

Merge pull request #382 from HERA-Team/support-future-array-shapes #1

Workflow file for this run

name: Publish hera_pspec to PyPI / GitHub
on:
push:
tags:
- "v*"
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Build source and wheel distributions
run: |
python -m pip install --upgrade build twine
python -m build
twine check --strict dist/*
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}