From 529fe17d248de21a02965bc08108acfe63870bac Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Fri, 23 May 2025 12:57:52 +0100 Subject: [PATCH] Patch to improve uv publishing --- .github/workflows/publish.yml | 9 +++++++-- invenio_config_iform/__about__.py | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e403dbe..b43be1b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,8 +13,13 @@ jobs: environment: release steps: - uses: actions/checkout@v4 - - name: Install uv - run: pip install uv + - name: Set up uv + uses: astral-sh/setup-uv@v6 + with: + python-version: "${{ matrix.python-version }}" + enable-cache: true + cache-dependency-glob: | + pyproject.toml - name: Build package run: uv build - name: Publish to PyPI diff --git a/invenio_config_iform/__about__.py b/invenio_config_iform/__about__.py index 6067002..7ee820a 100644 --- a/invenio_config_iform/__about__.py +++ b/invenio_config_iform/__about__.py @@ -8,4 +8,4 @@ """Metadata for this python module.""" -__version__ = "2025.5.20.5" +__version__ = "2025.5.20.6"