mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 19:43:06 +00:00
9 lines
207 B
Bash
Executable file
9 lines
207 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export NAVI_HOME="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
version="$1"
|
|
|
|
git tag -a "v${version}" -m 'WIP version written in Rust. Use 1.0.0 instead'
|
|
git push origin --tags
|