We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ef8a9 commit d02be93Copy full SHA for d02be93
makefile
@@ -12,10 +12,10 @@ fmt:
12
go fmt ./...
13
14
image:
15
- docker build . -t docker.io/kcllang/kpt-kcl:$(VERSION)
16
- docker push docker.io/kcllang/kpt-kcl:$(VERSION)
+ docker build . -t docker.io/kcllang/kpt-kcl:v$(VERSION)
+ docker push docker.io/kcllang/kpt-kcl:v$(VERSION)
17
18
release:
19
- git tag $(VERSION)
20
- git push origin $(VERSION)
21
- gh release create $(VERSION) --draft --generate-notes --title "$(VERSION) Release"
+ git tag v$(VERSION)
+ git push origin v$(VERSION)
+ gh release create v$(VERSION) --draft --generate-notes --title "$(VERSION) Release"
0 commit comments