mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 22:10:47 +02:00
10 lines
141 B
Bash
10 lines
141 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
ROOT=$(pwd)
|
||
|
|
|
||
|
|
cd $ROOT
|
||
|
|
|
||
|
|
VER=`cat VERSION`
|
||
|
|
echo "Tagging [$VER]"
|
||
|
|
git tag "$VER" && git push origin "$VER"
|