Skip to content

Commit

Permalink
publish py-raphtory, raphtory-io and raphtory-graphql into crates wit… (
Browse files Browse the repository at this point in the history
#980)

publish py-raphtory, raphtory-io and raphtory-graphql into crates with CI/CD
  • Loading branch information
Haaroon authored May 25, 2023
1 parent b544bf4 commit bc110d7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/_release_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,22 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory --allow-dirty
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory --allow-dirty
- name: "Publish raphtory-io to crates.io"
if: ${{ !inputs.dry_run }}
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory-io --allow-dirty
- name: "Publish raphtory-graphql to crates.io"
if: ${{ !inputs.dry_run }}
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory-graphql --allow-dirty
- name: "Publish py-raphtory to crates.io"
if: ${{ !inputs.dry_run }}
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package py-raphtory --allow-dirty
2 changes: 1 addition & 1 deletion raphtory-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ homepage.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
raphtory = { path = "../raphtory" }
raphtory = { path = "../raphtory", version = "0.3.1" }
reqwest = { version = "0.11.14", features = ["blocking"] }
neo4rs = "0.6.0"
csv = "1.1.6"
Expand Down

0 comments on commit bc110d7

Please sign in to comment.