Header Update #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Header Update | |
on: workflow_dispatch | |
jobs: | |
header-update: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get -qq update && sudo apt-get install -y libwayland-dev xorg-dev | |
- run: python scripts/update_deps.py --dir external --roll-mode latest-tag --roll Vulkan-Headers Vulkan-Loader Vulkan-Utility-Libraries Vulkan-Tools | |
- run: cmake -S . -B build -C external/helper.cmake | |
- run: cmake --build build --target vvl_codegen | |
- run: git checkout -b header_update | |
- run: git commit -a -m header_update | |
- run: git push --force header_update | |
- run: gh pr create --title header_update --body header_update | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |