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