Skip to content

Commit e263354

Browse files
authored
update cli to v0.1.1 (#5)
* update cli to v0.1.1 * update token env name
1 parent 64d68e7 commit e263354

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/install-kittycad-cli-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
run: kittycad file convert test-file.obj test-output.stl
2929
shell: powershell
3030
env:
31-
KITTYCAD_API_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN }}
31+
KITTYCAD_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN }}

entrypoint-win.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Export the sha256sum for verification.
2-
export KITTYCAD_CLI_SHA256="ee4a911b6814262b4e4d83c877654715a6442d401dbd2a104ebf31e82101e024"
2+
export KITTYCAD_CLI_SHA256="5bd98de5e17086a6ee3655842df3e8126c74c1acde416c7ae98ca9b5c2581fdb"
33

44
mkdir "C:\Program Files\KittyCAD"
55

66
# Download and check the sha256sum.
7-
curl -fSL "https://dl.kittycad.io/releases/cli/v0.0.9/cli-windows-amd64" -o "C:\Program Files\KittyCAD\kittycad.exe" \
7+
curl -fSL "https://dl.kittycad.io/releases/cli/v0.1.1/kittycad-x86_64-pc-windows-gnu" -o "C:\Program Files\KittyCAD\kittycad.exe" \
88
&& echo "${KITTYCAD_CLI_SHA256} C:\Program Files\KittyCAD\kittycad.exe" | sha256sum -c - \
99
&& chmod a+x "C:\Program Files\KittyCAD\kittycad.exe"
1010

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Export the sha256sum for verification.
2-
export KITTYCAD_CLI_SHA256="ecb8310fdb91ea44e545a19d88ebbc3c391835bc00978679030746bcb85c5031"
2+
export KITTYCAD_CLI_SHA256="73df1986bb0d1c97f72a9bb79298a464872fbf1e4c097624b911d001e7a73da1"
33

44

55
# Download and check the sha256sum.
6-
curl -fSL "https://dl.kittycad.io/releases/cli/v0.0.9/cli-linux-amd64" -o "/usr/local/bin/kittycad" \
6+
curl -fSL "https://dl.kittycad.io/releases/cli/v0.1.1/kittycad-x86_64-unknown-linux-musl" -o "/usr/local/bin/kittycad" \
77
&& echo "${KITTYCAD_CLI_SHA256} /usr/local/bin/kittycad" | sha256sum -c - \
88
&& chmod a+x "/usr/local/bin/kittycad"
99

0 commit comments

Comments
 (0)