install hatch for release

This commit is contained in:
Waylon S. Walker 2025-04-23 20:09:52 -05:00
parent 7511cace42
commit b64e635b71
2 changed files with 12 additions and 1 deletions

View file

@ -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