Files
rdu/Makefile
tchivert 58ab820946
build / build (push) Failing after 1m40s
add deb files creation to ci
2024-10-18 01:49:03 +02:00

17 lines
187 B
Makefile

all: build
build:
go build -o rdu ./src
run: build
./rdu
release:
git tag -d latest
git push --delete origin latest
git tag latest HEAD
git push origin latest
clean:
rm -f rdu