Skip to content

Commit

Permalink
actions: Fix workflow for studio release
Browse files Browse the repository at this point in the history
Signed-off-by: Jai Luthra <me@jailuthra.in>
  • Loading branch information
jailuthra committed Oct 12, 2023
1 parent 52040d4 commit bd502d5
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/gen_win_patches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
if [ "$variant" == "dch" ]; then
variant="DCH"
elif [ "$variant" == "studio" ]; then
variant="Studio Driver"
fi
echo "OS=$os" >> $GITHUB_ENV
Expand All @@ -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"
python autopatch.py ${{ env.VERSION }}
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
Expand Down

0 comments on commit bd502d5

Please sign in to comment.