Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ permissions:
env:
# Shared interpreter version for build and metadata steps.
PYTHON_VERSION: "3.11"
# Opt in to Node.js 24 for JavaScript-based actions ahead of runner defaults.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
version-and-release:
Expand Down Expand Up @@ -100,16 +102,16 @@ jobs:
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}

- name: Install Poetry
run: pipx install poetry

- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
cache-dependency-path: poetry.lock

- name: Install Poetry
run: pipx install poetry

- name: Build distributions
run: poetry build

Expand Down
Loading