From 71692fc667de5a2c60faa2bd9bcf09e4dc40502e Mon Sep 17 00:00:00 2001 From: Tom Tankilevitch <59158507+Tankilevitch@users.noreply.github.com> Date: Sat, 21 Jan 2023 17:23:21 +0200 Subject: [PATCH] [CI] Add python setup and pip to automatic release (#2962) --- .github/workflows/automatic-release.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/automatic-release.yaml b/.github/workflows/automatic-release.yaml index fbfc2b3f65..d048d23dd0 100644 --- a/.github/workflows/automatic-release.yaml +++ b/.github/workflows/automatic-release.yaml @@ -65,6 +65,13 @@ jobs: needs: create-releases steps: - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.9' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r automation/requirements.txt -r dev-requirements.txt && pip install -e . - name: Generate release notes id: release-notes run: |