From 0ae6ede385fe95a3c19b68428d8d8f7110342d25 Mon Sep 17 00:00:00 2001 From: Niels Nuyttens Date: Fri, 6 Dec 2024 22:10:19 +0100 Subject: [PATCH] [skip ci] Fix release flow --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c93ba7..b3ce403 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,5 +13,14 @@ jobs: contents: read steps: - uses: actions/checkout@v3 + - name: Install uv + uses: astral-sh/setup-uv@v3 + with: + enable-cache: true + cache-dependency-glob: "uv.lock" + - name: Install python 3.12 + uses: actions/setup-python@v5 + with: + python-version-file: ".python-version" - name: Publish to PyPi run: uv publish