Skip to content

Commit

Permalink
chore: update Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Peefy <[email protected]>
  • Loading branch information
Peefy committed Oct 28, 2024
1 parent 62ef8a9 commit d02be93
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ fmt:
go fmt ./...

image:
docker build . -t docker.io/kcllang/kpt-kcl:$(VERSION)
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)

release:
git tag $(VERSION)
git push origin $(VERSION)
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 comments on commit d02be93

Please sign in to comment.