1
0
mirror of https://github.com/Luzifer/wiki.git synced 2024-09-16 14:18:29 +00:00
wiki/Makefile
Knut Ahlers 2ef54b4218
CI: Build app code on-demand
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2024-01-30 16:30:19 +01:00

19 lines
289 B
Makefile

VERSION := $(shell git describe --tags --always || echo dev)
default: build
build: frontend
go build \
-ldflags "-s -w -X main.version=$(version)" \
-mod=readonly \
-trimpath
frontend: node_modules
node ci/build.mjs
node_modules:
npm ci
publish: frontend
bash ./ci/build.sh