1
1
mirror of https://github.com/cooperspencer/gickup synced 2025-04-04 21:39:04 +02:00
gickup/justfile
2025-03-13 17:45:51 +01:00

22 lines
274 B
Makefile

lasttag := ```
git describe --tags `git rev-list --tags --max-count=1`
```
build:
go build .
release:
git checkout {{lasttag}}
go build -ldflags '-X "main.version={{lasttag}}"'
cleanup:
go mod tidy
gofmt -s -w .
update:
go get -u
go mod tidy
pull:
git pull