From 12268c8a78d4dc3a3db4e61a939901e728a975d3 Mon Sep 17 00:00:00 2001 From: nullswan Date: Mon, 21 Oct 2024 12:08:38 +0200 Subject: [PATCH] ci(workflows): add Python setup to release workflow --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 20dbda5..1afea1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,11 @@ jobs: with: go-version-file: go.mod + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + - name: Install Dependencies run: bash hack/install-deps.sh