diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml index c2d32cb1..d738b7b5 100644 --- a/.github/workflows/build-cmake.yml +++ b/.github/workflows/build-cmake.yml @@ -32,6 +32,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + fetch-tags: true - name: Install Dependencies shell: bash @@ -61,5 +63,6 @@ jobs: if: always() shell: bash run: | + cat build/expversion.h git status ls -lR build diff --git a/CMakeLists.txt b/CMakeLists.txt index c88e7ed2..5585adeb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -492,7 +492,6 @@ if(QUAKE_GENERATE_VERSION_HEADER) OUTPUT_STRIP_TRAILING_WHITESPACE OUTPUT_VARIABLE QUAKE_VERSION ) - message("Version is ${QUAKE_VERSION}") file(WRITE ${VERSION_HEADER} "static const char* const expversion = \"${QUAKE_VERSION}\";\n") set(COMMON_SOURCES ${COMMON_SOURCES} ${VERSION_HEADER})