ci: Fix Copier install through uv on Python 3.14 #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: push | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Prepare release notes | |
run: uv tool run git-changelog --release-notes > release-notes.md | |
- name: Create release | |
uses: softprops/action-gh-release@v2 | |
with: | |
body_path: release-notes.md |