From c2d42d4849895fff650dd35fb3e00cbc565e9637 Mon Sep 17 00:00:00 2001 From: Liam Bigelow <40188355+bglw@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:57:10 +1300 Subject: [PATCH] Install Python in release action before tests --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb4f3a63..f842dbcd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -477,6 +477,11 @@ jobs: with: version: ${{env.WASM_PACK_VERSION}} + - name: Set up python 3.12 + uses: actions/setup-python@v5 + with: + python-version: "3.12" + - name: Prepare Git run: | git config user.email "github@github.com"