Update build-python-packages.yml with git install

This commit is contained in:
priya-kinthali
2024-06-14 13:35:55 +05:30
committed by GitHub
parent 2c36fe8085
commit 1283f694e2

View File

@@ -85,6 +85,16 @@ jobs:
shell: powershell
run: |
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: Install Git
shell: cmd
run: |
choco install git -y
- name: Add Git to PATH
shell: powershell
run: |
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: Check git version
run: |
git --version