depl 2.4.3

Toolkit for a bunch of local and remote CI/CD actions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13

all: README.md
	go build ./...

README.md: go-types.md ../internal/cmd/weave/*.go $(wildcard */*.go)
	go run ../internal/cmd/weave go-types.md >README.md

# This is for previewing using github.
# $HOME/markdown must be a github client.
test: README.md
	cp README.md $$HOME/markdown/
	(cd $$HOME/markdown/ && git commit -m . README.md && git push)