Set correct git tag in CI

This commit is contained in:
Chris Cowan 2025-06-23 23:23:12 -07:00 committed by Rachael Alexanderson
commit 94e73cbe15
2 changed files with 20 additions and 11 deletions

View file

@ -73,7 +73,11 @@ jobs:
wget -q "https://github.com/coelckers/gzdoom/releases/download/ci_deps/${ZMUSIC_PACKAGE}"
tar -xf "${ZMUSIC_PACKAGE}"
fi
- name: Git describe
id: ghd
uses: proudust/gh-describe@v2
- name: Configure
shell: bash
run: |
@ -82,6 +86,7 @@ jobs:
- name: Build
shell: bash
run: |
export GIT_DESCRIBE="${{ steps.ghd.outputs.describe }}"
export MAKEFLAGS=--keep-going
cmake --build build --config ${{ matrix.config.build_type }} --parallel 3