From a7b2d727f8c7b2d6887cf71b4a39f8e01552c869 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Wed, 5 Apr 2023 21:20:28 +0200 Subject: [PATCH] Fix: Show version number in web interface instead of git hash (if available) see https://github.com/actions/checkout/issues/701 for further info --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84959fbf..4fa430ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,6 +52,9 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Get tags + run: git fetch --force --tags origin + - name: Cache pip uses: actions/cache@v3 with: