mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 19:43:06 +00:00
ed0759f9e3
Fixes #306 This only happens when using the bash widget
12 lines
253 B
Bash
Executable file
12 lines
253 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}"
|
|
git push origin --tags
|