mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-09 15:19:11 +02:00
8 lines
195 B
Bash
Executable file
8 lines
195 B
Bash
Executable file
#!/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
|