mirror of
https://github.com/TECHNOFAB11/docsonnet.git
synced 2025-12-11 22:10:13 +01:00
* chore: add goreleaser config + adapt Dockerfile * chore: cleanup makefile and deprecated pipeline * chore: go mod tidy -go=1.19 * feat: add release pipeline --------- Signed-off-by: Matthias Riegler <me@xvzf.tech>
12 lines
235 B
Makefile
12 lines
235 B
Makefile
.PHONY: build release docs
|
|
|
|
build:
|
|
goreleaser build --rm-dist --snapshot
|
|
|
|
release:
|
|
goreleaser release --rm-dist
|
|
|
|
docs:
|
|
jsonnet -S -c -m doc-util/ \
|
|
-e "(import 'doc-util/main.libsonnet').render(import 'doc-util/main.libsonnet')"
|
|
|