correct action
All checks were successful
Source release / source-package (push) Successful in 31s

This commit is contained in:
Mario Fetka
2026-04-21 18:48:32 +02:00
parent 41f7bc4196
commit e79832426b

View File

@@ -19,7 +19,17 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
token: ${{ secrets.RELEASE_TOKEN }}
- name: Fetch tags explicitly
run: |
git fetch --force --tags
echo "describe:"
git describe --tags --exact-match || true
echo "points-at-head:"
git tag --points-at HEAD || true
- name: Update submodules explicitly
run: |