1 Commits

Author SHA1 Message Date
k3nny 3fd8dc2a49 build: add install task command that copies the build binary into /usr/local/bin
ci / vet, staticcheck, test, build (push) Successful in 3m27s
2026-07-12 14:30:52 +02:00
+6
View File
@@ -24,6 +24,12 @@ tasks:
generates: generates:
- "{{.BIN}}" - "{{.BIN}}"
install:
desc: installs the binary in /usr/local/bin/
cmds:
- task: build
- sudo cp ./bin/releaser /usr/local/bin/releaser
run: run:
desc: Build and run releaser (pass args with -- e.g. task run -- --dry-run) desc: Build and run releaser (pass args with -- e.g. task run -- --dry-run)
deps: [build] deps: [build]