mirror of
https://github.com/keylase/nvidia-patch.git
synced 2024-11-09 19:48:20 +00:00
actions: Fix workflow for studio release
Signed-off-by: Jai Luthra <me@jailuthra.in>
This commit is contained in:
parent
52040d4deb
commit
bd502d57d4
22
.github/workflows/gen_win_patches.yml
vendored
22
.github/workflows/gen_win_patches.yml
vendored
@ -34,6 +34,8 @@ jobs:
|
||||
|
||||
if [ "$variant" == "dch" ]; then
|
||||
variant="DCH"
|
||||
elif [ "$variant" == "studio" ]; then
|
||||
variant="Studio Driver"
|
||||
fi
|
||||
|
||||
echo "OS=$os" >> $GITHUB_ENV
|
||||
@ -57,22 +59,34 @@ jobs:
|
||||
- name: Delete Existing Files
|
||||
run: |
|
||||
echo "Deleting existing files if they exist"
|
||||
rm -f "${{ github.workspace }}/win/win10_x64/${{ env.VERSION }}/nvencodeapi64.1337"
|
||||
rm -f "${{ github.workspace }}/win/win10_x64/${{ env.VERSION }}/nvencodeapi.1337"
|
||||
dir=${{ env.VERSION }}
|
||||
|
||||
if [ "${{ env.VARIANT }}" == "Studio Driver" ]; then
|
||||
dir=nsd_${{ env.VERSION }}
|
||||
fi
|
||||
|
||||
rm -f "${{ github.workspace }}/win/win10_x64/$dir/nvencodeapi64.1337"
|
||||
rm -f "${{ github.workspace }}/win/win10_x64/$dir/nvencodeapi.1337"
|
||||
echo "Existing files deleted successfully"
|
||||
|
||||
- name: Run autopatch.py
|
||||
run: |
|
||||
echo "Running autopatch.py with version ${{ env.VERSION }}"
|
||||
echo "Running autopatch.py with version ${{ env.VERSION }} and variant ${{ env.VARIANT }}"
|
||||
cd "${{ github.workspace }}/win/tools/autopatch"
|
||||
|
||||
if [ "${{ env.VARIANT }}" == "DCH" ]; then
|
||||
python autopatch.py ${{ env.VERSION }}
|
||||
elif [ "${{ env.VARIANT }}" == "Studio Driver" ]; then
|
||||
python autopatch.py https://international.download.nvidia.com/Windows/${{ env.VERSION }}/${{ env.VERSION }}-desktop-win10-win11-64bit-international-nsd-dch-whql.exe
|
||||
fi
|
||||
|
||||
echo "autopatch.py executed successfully"
|
||||
|
||||
- name: Run add_driver.py
|
||||
run: |
|
||||
echo "Running add_driver.py with variant ${{ env.VARIANT }} and version ${{ env.VERSION }}"
|
||||
cd "${{ github.workspace }}/tools/readme-autogen"
|
||||
python add_driver.py -W -P GeForce --variant ${{ env.VARIANT }} -w win10 ${{ env.VERSION }}
|
||||
python add_driver.py -W -P GeForce --variant "${{ env.VARIANT }}" -w win10 ${{ env.VERSION }}
|
||||
echo "add_driver.py executed successfully"
|
||||
|
||||
- name: Run readme_autogen.py
|
||||
|
Loading…
Reference in New Issue
Block a user