Skip to content

Commit 2b5ff1f

Browse files
authored
update to latest (#13)
* update to latest * fix windows * try fix convert
1 parent 3dc64d3 commit 2b5ff1f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: ./
2626
id: install-kittycad
2727
- name: convert
28-
run: kittycad file convert test-file.obj test-output.stl
28+
run: kittycad file convert --output-format=stl test-file.obj ./
2929
shell: powershell
3030
env:
3131
KITTYCAD_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: windows-latest
1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: KittyCAD/action-install-cli@v0.1.1
15+
- uses: KittyCAD/action-install-cli@v0.2.12
1616
- name: convert
17-
run: kittycad file convert test-file.obj test-output.stl
17+
run: kittycad file convert --output-format=stl test-file.obj ./
1818
shell: powershell
1919
env:
2020
KITTYCAD_API_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="5bd98de5e17086a6ee3655842df3e8126c74c1acde416c7ae98ca9b5c2581fdb"
2+
export KITTYCAD_CLI_SHA256="1159837f9b759a6bc60c997f78f355f0f3c84cb76e42397bbd79b2422fa7314e"
33

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

66
# Download and check the sha256sum.
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" \
7+
curl -fSL "https://dl.kittycad.io/releases/cli/v0.2.12/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="73df1986bb0d1c97f72a9bb79298a464872fbf1e4c097624b911d001e7a73da1"
2+
export KITTYCAD_CLI_SHA256="c2927b936b0ee39414f65a0c73ef8c7dbd8a80e434e991fdffc29ab143b64238"
33

44

55
# Download and check the sha256sum.
6-
curl -fSL "https://dl.kittycad.io/releases/cli/v0.1.1/kittycad-x86_64-unknown-linux-musl" -o "/usr/local/bin/kittycad" \
6+
curl -fSL "https://dl.kittycad.io/releases/cli/v0.2.12/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)