Files
topip/Makefile
tchivert 2cefb2f480
build / build (push) Failing after 58s
add deb build
2024-12-29 12:08:45 +01:00

17 lines
187 B
Makefile

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