Skip to content

Commit

Permalink
Added deployment workflow for rust API
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwinger committed Jul 10, 2023
1 parent 7ec4007 commit 656f245
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,16 @@ jobs:
with:
password: ${{ secrets.PYPI_TOKEN }}

deploy-rust:
runs-on: kuzu-self-hosted-linux-building
steps:
- uses: actions/checkout@v3

- run: cargo publish
working-directory: tools/rust_api
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

build-precompiled-bin-mac:
uses: ./.github/workflows/mac-precompiled-bin-workflow.yml
secrets: inherit
Expand Down
2 changes: 1 addition & 1 deletion tools/rust_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kuzu"
version = "0.0.4"
version = "0.0.5"
description = "An in-process property graph database management system built for query speed and scalability"
# Note: 1.63 required for building tests
rust-version = "1.51"
Expand Down

0 comments on commit 656f245

Please sign in to comment.