mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-09 15:19:11 +02:00
- Adjust dependency versions - Add release tests - Add a quick installation script - Add small utility scripts - Add note on review and developer certificate of origin (DCO) - Add note on accessibility
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
|