Skip to content

Commit 8b7fb7a

Browse files
authored
add releases (#151)
fix github actions & publish step
1 parent 267901b commit 8b7fb7a

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

.github/workflows/cross-deps.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ sudo apt update -y && sudo apt install -y \
1010
curl \
1111
g++ \
1212
gcc \
13+
musl-tools \
1314
gcc-mingw-w64-i686 \
1415
gcc-mingw-w64 \
1516
jq \

.github/workflows/make-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
brew install \
3737
coreutils \
38-
jq
38+
jq \
3939
openssl \
4040
pkg-config
4141
@@ -73,7 +73,7 @@ jobs:
7373
uses: google-github-actions/[email protected]
7474
with:
7575
path: releases
76-
destination: dl.zoo.io
76+
destination: dl.kittycad.io
7777
# Store the binary artifacts for retrival later.
7878
- name: Upload artifacts
7979
uses: actions/upload-artifact@v4

Cargo.lock

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ hyper = "1"
3838
libmdns = "0.9.1"
3939
moonraker = { path = "moonraker", optional = true }
4040
multer = { version = "3.1.0", features = ["json"] }
41+
openssl = { version = "0", features = ["vendored"] }
4142
opentelemetry = "0.25.0"
4243
opentelemetry-otlp = "0.25.0"
4344
opentelemetry_sdk = { version = "0.25.0", features = ["rt-tokio"] }

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL := /bin/bash
44
# Set an output prefix, which is the local directory if not specified
55
PREFIX?=$(shell pwd)
66

7-
NAME := zoo
7+
NAME := machine-api
88

99
# Set the build dir, where built cross-compiled binaries will be output
1010
BUILDDIR := ${PREFIX}/cross

0 commit comments

Comments
 (0)