Skip to content

v2025.5.22

v2025.5.22 #10

Workflow file for this run

name: Publish intake-esgf to PyPI
on:
release:
types:
- published
jobs:
deploy:
if: github.repository == 'esgf2-us/intake-esgf'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all branches and tags.
- name: Install uv environment
uses: astral-sh/setup-uv@v4
- name: Build intake-esgf
run: uv build
- name: Publish to PyPI
run: uv publish --token ${{ secrets.PYPI_TOKEN }}