Files
tchivert 3b10816e4e
build / build (push) Successful in 12s
add ci
2024-08-03 01:14:25 +02:00

18 lines
191 B
Makefile

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