fix: Add git configuration for tagging in release workflow

This commit is contained in:
2026-01-10 15:47:00 +00:00
parent 6ededb139b
commit 97ca8c4015

View File

@@ -52,6 +52,15 @@ jobs:
echo "exists=false" >> "$GITHUB_OUTPUT" echo "exists=false" >> "$GITHUB_OUTPUT"
fi fi
- name: Maak of update git-tag
if: steps.tagcheck.outputs.exists == 'false'
run: |
TAG="v${{ steps.meta.outputs.version }}"
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag "$TAG" "$GITHUB_SHA"
git push origin "$TAG"
- name: Tag bestaat al workflow afronden - name: Tag bestaat al workflow afronden
if: steps.tagcheck.outputs.exists == 'true' if: steps.tagcheck.outputs.exists == 'true'
run: | run: |