Skip to content

Commit

Permalink
Add the python and deps setup steps to the final release job. (ansibl…
Browse files Browse the repository at this point in the history
…e#678)

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner authored Dec 13, 2024
1 parent 5a8bc6f commit b37fdd2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,17 @@ jobs:
name: python-package-distributions
path: dist/

- name: Get python version from Makefile
run: echo py_version=`make PYTHON_VERSION` >> $GITHUB_ENV

- name: Install python ${{ env.py_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.py_version }}

- name: Install python deps
run: pip install -r requirements/requirements_dev.txt

- name: Create a GitHub Release uploading the dists
run: >-
ansible-playbook
Expand Down

0 comments on commit b37fdd2

Please sign in to comment.