File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 11.DEFAULT_GOAL := lint
22
3+ RELEASE_VERSION = $(shell .build/release/hostmgr --version)
4+
35lint :
4- docker run -it --rm -v ` pwd` :` pwd` -w ` pwd` ghcr.io/realm/swiftlint:0.49.1 swiftlint lint --strict --progress
6+ docker run -it --rm -v ` pwd` :` pwd` -w ` pwd` ghcr.io/realm/swiftlint:0.47.1 swiftlint lint --strict
7+
8+ autocorrect :
9+ docker run -it --rm -v ` pwd` :` pwd` -w ` pwd` ghcr.io/realm/swiftlint:0.47.1 swiftlint --autocorrect
10+
11+ build-release :
12+ @echo " --- Building Release"
13+ swift build -c release
514
6- lintfix :
7- docker run -it --rm -v ` pwd` :` pwd` -w ` pwd` ghcr.io/realm/swiftlint:0.49.1 swiftlint --fix
15+ release : build-release
16+ @echo " --- Tagging Release"
17+ git tag $(RELEASE_VERSION )
18+ git push origin $(RELEASE_VERSION )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import libhostmgr
55@main
66struct Hostmgr : AsyncParsableCommand {
77
8- private static var appVersion = " 0.15.0-beta.7 "
8+ private static var appVersion = " 0.15.0-beta.8 "
99
1010 static var configuration = CommandConfiguration (
1111 abstract: " A utility for managing VM hosts " ,
You can’t perform that action at this time.
0 commit comments