mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-19 13:41:13 +02:00
This is the official v0.3.0-alpha.5 release. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo 1>&2 "Usage: $0 <tag>"
|
|
exit 1
|
|
fi
|
|
|
|
git commit -s -m "chore: prepare release $1" -m "This is the official $1 release."
|