Add Git installation step for RHEL platforms in build jobs

This commit is contained in:
Priyagupta108
2026-05-27 17:05:56 +05:30
parent 906cb183b6
commit 4be8c23d93

View File

@@ -86,6 +86,11 @@ jobs:
env:
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
steps:
- name: Install Git
if: startsWith(matrix.platform, 'rhel')
shell: bash
run: sudo dnf install -y git
- name: Check out repository code
uses: actions/checkout@v6
with:
@@ -113,6 +118,11 @@ jobs:
env:
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
steps:
- name: Install Git
if: startsWith(matrix.platform, 'rhel')
shell: bash
run: sudo dnf install -y git
- name: Check out repository code
uses: actions/checkout@v6
with: