1
0
mirror of https://github.com/Luzifer/wiki.git synced 2024-09-18 23:23:00 +00:00
wiki/Makefile

19 lines
289 B
Makefile
Raw Permalink Normal View History

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