Files
gallery/Makefile
tchivert 2d64b57b7b
docker / docker (push) Failing after 16s
build / build (push) Successful in 1m7s
add makefile
2024-08-10 17:02:38 +02:00

17 lines
193 B
Makefile

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