File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed
Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 44 hooks :
55 # You may remove this if you don't use go modules.
66 - go mod tidy
7- # - ./scripts/install-kcl-lsp-all.sh
7+ - ./scripts/install-kcl-lsp-all.sh
88
99# .goreleaser.yml
1010builds :
@@ -32,8 +32,8 @@ archives:
3232 - goos : windows
3333 format : zip
3434 # Put kcl-language-server binaries into add to the kcl archive.
35- # files:
36- # - ./bin/kcl-lsp-v{{ .Version }}-{{ .Os }}-{{ .Arch }}/*
35+ files :
36+ - ./bin/kcl-lsp-v{{ .Version }}-{{ .Os }}-{{ .Arch }}/*
3737
3838brews :
3939 - tap :
Original file line number Diff line number Diff line change @@ -12,4 +12,8 @@ RUN /usr/local/bin/kcl
1212RUN cp -r /root/go/bin/* /usr/local/bin/
1313RUN apt-get update
1414RUN apt-get install gcc -y
15+ # The reason for doing this below is to prevent the
16+ # container from not having write permissions.
1517ENV KCL_GO_DISABLE_ARTIFACT=on
18+ ENV KCL_PKG_PATH=/tmp
19+ ENV KCL_CACHE_PATH=/tmp
Original file line number Diff line number Diff line change 1- 0.7.2
1+ 0.7.3-alpha.1
Original file line number Diff line number Diff line change @@ -33,8 +33,9 @@ func getVersion(version string) string {
3333
3434// All the kpm versions.
3535const (
36- VersionTypeLatest = Version_0_7_2
36+ VersionTypeLatest = Version_0_7_3_alpha_1
3737
38+ Version_0_7_3_alpha_1 VersionType = "0.7.3-alpha.1"
3839 Version_0_7_2 VersionType = "0.7.2"
3940 Version_0_7_1 VersionType = "0.7.1"
4041 Version_0_7_0 VersionType = "0.7.0"
You can’t perform that action at this time.
0 commit comments