From 03f045a76d8f6bc95b3917e10076be719bcd9fe4 Mon Sep 17 00:00:00 2001 From: Lilith Wittmann Date: Sun, 22 Oct 2023 10:21:56 +0200 Subject: [PATCH] chore(pipelines): install correct python version in the release pipeline too --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21b1b10..a436a5b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,10 @@ jobs: runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip poetry