We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c5080 commit d3e5b0aCopy full SHA for d3e5b0a
1 file changed
.github/workflows/set-version-tag.yml
@@ -16,7 +16,9 @@ jobs:
16
- name: Update Submodules
17
run: |
18
cd Vulkan-Headers
19
- VK_HEADER_GIT_TAG=$(git tag --points-at HEAD | head -n1)
+ git fetch --all --tags
20
+ VK_HEADER_GIT_TAG=$(git describe --always --tags $(git rev-list --tags) | grep 'v[0-9]\.' | head -n1)
21
+ echo "New revision of Vulkan-Headers: $VK_HEADER_GIT_TAG"
22
git checkout $VK_HEADER_GIT_TAG
23
echo "VK_HEADER_GIT_TAG=$VK_HEADER_GIT_TAG" >> $GITHUB_ENV
24
0 commit comments