1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-07 01:09:45 +02:00

Create annotated tags

They are preferable over lightweight tags because they carry information about
who created them, and when.
This commit is contained in:
Stefan Haller
2025-07-05 17:49:21 +02:00
parent f735c6af17
commit db3a23a11c

View File

@ -131,7 +131,7 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag ${{ env.new_tag }}
git tag ${{ env.new_tag }} -a -m "Release ${{ env.new_tag }}"
git push origin ${{ env.new_tag }}
env:
GITHUB_TOKEN: ${{ secrets.LAZYGIT_RELEASE_PAT }}