From 5d730cd4e54b7fd4ddba4f58feec2a9b9c98d329 Mon Sep 17 00:00:00 2001 From: Alexander Mihajlovic Date: Fri, 5 Jul 2024 14:11:53 +0200 Subject: [PATCH] ci: Print git tags and describe To be able to check that the state of the repo is as expected after checkout. --- .github/workflows/ci.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4b0fb8a..b6caaf9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,14 @@ jobs: with: fetch-tags: true + - name: Git Describe + run: | + git describe --tags --always + + - name: Git Tags + run: | + git tag -l -n1 + - uses: actions/setup-python@v5 with: python-version: '3.11'