mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-03 14:01:04 +02:00
TLDR; Run "make help" for options. * gofmt * .gitignore kube-router binary * Docs: build/release workflow * Implement build/release workflow
15 lines
247 B
Bash
Executable File
15 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
git describe --exact-match || echo -n
|
|
|
|
# if [ -z "${RELEASE_TAG}" ]; then
|
|
# echo "Commit is not tagged. Release aborted."
|
|
# exit 1
|
|
# else
|
|
# echo "${RELEASE_TAG}"
|
|
# fi
|