Skip to content

Merge branch 'v2.17.x' into development #6

Merge branch 'v2.17.x' into development

Merge branch 'v2.17.x' into development #6

name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
on: push
jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Micromamba
uses: mamba-org/setup-micromamba@v2
with:
environment-file: conda/CI-env.lock
environment-name: uw-2.17
generate-run-shell: true
cache-environment: true
#cache-downloads: false
- name: Form tarball to publish
run: |
micromamba env list
micromamba list -v
env
python3 setup.py sdist
shell: micromamba-shell {0}
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/underworld # Replace <package-name> with your PyPI project name
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1