mirror of
https://github.com/linka-cloud/d2vm.git
synced 2024-11-25 09:06:24 +00:00
Makefile: add completions generation
goreleaser: fix typo, add completions to release archive Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
This commit is contained in:
parent
f1557d104d
commit
f855fe9c7a
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@ images
|
||||
.goreleaser.yaml
|
||||
docs/build
|
||||
docs-src
|
||||
/completions
|
||||
|
@ -15,6 +15,7 @@ project_name: d2vm
|
||||
before:
|
||||
hooks:
|
||||
- go mod tidy
|
||||
- make completions
|
||||
builds:
|
||||
- main: ./cmd/d2vm
|
||||
env:
|
||||
@ -38,9 +39,13 @@ snapshot:
|
||||
release:
|
||||
prerelease: auto
|
||||
extra_files:
|
||||
- glob: README.md
|
||||
- glob: LICENSE
|
||||
- glob: LICENCE
|
||||
- glob: pgp.pub
|
||||
archives:
|
||||
- files:
|
||||
- LICENCE
|
||||
- README.md
|
||||
- completions/*
|
||||
changelog:
|
||||
sort: asc
|
||||
filters:
|
||||
|
8
Makefile
8
Makefile
@ -101,6 +101,14 @@ build: bin
|
||||
release: bin
|
||||
@VERSION=$(VERSION) IMAGE=$(DOCKER_IMAGE) goreleaser release --rm-dist --parallelism 8
|
||||
|
||||
.PHONY: completions
|
||||
completions: .build
|
||||
@rm -rf completions
|
||||
@mkdir -p completions
|
||||
@for shell in bash zsh fish powershell; do \
|
||||
d2vm completion $$shell > completions/d2vm.$$shell; \
|
||||
done
|
||||
|
||||
.PHONY: examples
|
||||
examples: build-dev
|
||||
@mkdir -p examples/build
|
||||
|
Loading…
Reference in New Issue
Block a user