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 68dc0ec commit 43d6254Copy full SHA for 43d6254
.github/workflows/install-kcl.yml
@@ -64,10 +64,11 @@ jobs:
64
steps:
65
- uses: actions/checkout@v3
66
- name: Check Install Script Core
67
- run: static/script/install.ps1
+ run: powershell -Command "iwr -useb https://kcl-lang.io/script/install-cli.ps1 | iex"
68
69
- name: Check Install Script CLI
70
- run: static/script/install-cli.ps1
+ run: powershell -Command "iwr -useb https://kcl-lang.io/script/uninstall-cli.ps1 | iex"
71
+
72
- name: Check KCL run
73
run: C:\kclvm\bin\kcl.exe run ./examples/configuration/nginx.k
74
0 commit comments