From 03ac2013090538353cd299de7f977d9c552c8be1 Mon Sep 17 00:00:00 2001 From: Charles Giessen Date: Tue, 28 Nov 2023 13:35:19 -0700 Subject: [PATCH] Fix bugs in create_tag.yml Forgot to checkout the repo and didn't have the correct path to a file. --- .github/workflows/create_tag.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_tag.yml b/.github/workflows/create_tag.yml index 0e62e61..d37f9c7 100644 --- a/.github/workflows/create_tag.yml +++ b/.github/workflows/create_tag.yml @@ -25,11 +25,14 @@ jobs: name: Tag header update runs-on: ubuntu-latest steps: - - name: Read CurentBuildVulkanVersion.cmake + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Read CurrentBuildVulkanVersion.cmake id: read-version-file uses: juliangruber/read-file-action@v1 with: - path: ./gen/CurentBuildVulkanVersion.cmake + path: gen/CurrentBuildVulkanVersion.cmake - name: Match regex from version file uses: actions-ecosystem/action-regex-match@v2