From b64e635b714564c2ff3017fd2141f5036fe035b1 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Wed, 23 Apr 2025 20:09:52 -0500 Subject: [PATCH] install hatch for release --- .github/workflows/release-pypi.yaml | 11 +++++++++++ krayt/__about__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-pypi.yaml b/.github/workflows/release-pypi.yaml index e7b47e7..f1a6c3e 100644 --- a/.github/workflows/release-pypi.yaml +++ b/.github/workflows/release-pypi.yaml @@ -31,6 +31,17 @@ jobs: run: | curl -LsSf https://astral.sh/uv/0.6.16/install.sh | sh shell: bash + - name: Install hatch + run: | + uv pip install hatch --system + shell: bash + - name: Configure Git + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + shell: bash - name: GitHub Release (just release) run: just create-release + env: + GH_TOKEN: ${{ github.token }} shell: bash diff --git a/krayt/__about__.py b/krayt/__about__.py index 6f9c9b3..ea0e418 100644 --- a/krayt/__about__.py +++ b/krayt/__about__.py @@ -1 +1 @@ -__version__ = "0.4.1b0" +__version__ = "0.4.1b1"