mirror of
https://github.com/denisidoro/navi
synced 2024-11-14 15:57:13 +00:00
12 lines
305 B
Bash
Executable file
12 lines
305 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export NAVI_HOME="$(cd "$(dirname "$0")/.." && pwd)"
|
|
source "${NAVI_HOME}/scripts/install"
|
|
|
|
version="${1:-$(version_from_toml)}"
|
|
echo "version: $version..."
|
|
sleep 2
|
|
|
|
git tag -a "v${version}" -m 'WIP version written in Rust. Use 1.0.0 instead'
|
|
git push origin --tags
|