diff --git a/.github/workflows/fetch_dependencies.yml b/.github/workflows/fetch_dependencies.yml index 7c73e13..aba0945 100644 --- a/.github/workflows/fetch_dependencies.yml +++ b/.github/workflows/fetch_dependencies.yml @@ -23,8 +23,9 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v5 with: - title: "update dependencies" - commit-message: "update dependencies" + token: ${{ secrets.PAT }} + title: update dependencies + commit-message: update dependencies committer: GitHub author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> base: indev diff --git a/scripts/fetch_dependencies.sh b/scripts/fetch_dependencies.sh index 2d75740..bedebfc 100644 --- a/scripts/fetch_dependencies.sh +++ b/scripts/fetch_dependencies.sh @@ -1,7 +1,8 @@ #!/bin/bash # Update volk -rm ../third_party/volk.* +rm -f ../third_party/volk.c +rm -f ../third_party/volk.h wget https://api.github.com/repos/zeux/volk/zipball/1.3.270 -O volk.zip unzip -o volk.zip -d ../third_party/ mv ../third_party/zeux-volk*/volk.h ../third_party @@ -11,6 +12,7 @@ rm volk.zip # Update Vulkan headers rm -rf ../third_party/vulkan +rm -rf ../third_party/vk_video wget https://github.com/KhronosGroup/Vulkan-Headers/archive/main.zip -O vulkan-headers.zip unzip -o vulkan-headers.zip -d ../third_party/ mv ../third_party/Vulkan-Headers-main/include/vulkan ../third_party/