Add git-tag script

This commit is contained in:
project-repo 2023-04-13 19:52:13 +02:00
commit 8af1286c57

8
scripts/git-tag Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
# Copyright 2023, project-repo and the cagebreak contributors
# SPDX-License-Identifier: MIT
readonly gpg_id="${1}"
readonly version="${2}"
git tag -u "${gpg_id}" "${version}" HEAD