Skip to content

Commit

Permalink
add metadata required for release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmurariu committed Jun 6, 2024
1 parent dc40791 commit 57413cf
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 8 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/_release_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@ jobs:
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory-graphql --allow-dirty
- name: "Publish raphtory-api to crates.io (DRY RUN)"
if: ${{ inputs.dry_run }}
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory-api --allow-dirty --dry-run
- name: "Publish pometry-storage to crates.io (DRY RUN)"
if: ${{ inputs.dry_run }}
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package pometry-storage --allow-dirty --dry-run
- name: "Publish raphtory to crates.io (DRY RUN)"
if: ${{ inputs.dry_run }}
uses: actions-rs/cargo@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release_auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ jobs:
name: _Release 2 - Publish Rust package to crates.io
uses: ./.github/workflows/_release_rust.yml
with:
base: ${{ github.event.inputs.base }}
dry_run: ${{ github.event.inputs.dry_run == true }}
base: ${{ inputs.base }}
dry_run: ${{ inputs.dry_run == true }}
secrets: inherit
call-release-python-workflow:
name: _Release 3 - Publish python to pypi
uses: ./.github/workflows/_release_python.yml
with:
base: ${{ github.event.inputs.base }}
dry_run: ${{ github.event.inputs.dry_run == true }}
base: ${{ inputs.base }}
dry_run: ${{ inputs.dry_run == true }}
secrets: inherit
call-release-github-workflow:
name: _Release 4 - Publish to Github
uses: ./.github/workflows/_release_github.yml
with:
base: ${{ github.event.inputs.base }}
base: ${{ inputs.base }}
secrets: inherit
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ debug = true

[workspace.dependencies]
#[public-storage]
pometry-storage = { version = "0.8.1", path = "pometry-storage" }
pometry-storage = { version = ">=0.8.1", path = "pometry-storage" }
#[private-storage]
# pometry-storage = { path = "pometry-storage-private", package = "pometry-storage-private" }
async-graphql = { version = "7.0.5", features = ["dynamic-schema"] }
Expand Down
12 changes: 11 additions & 1 deletion pometry-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[package]
name = "pometry-storage"
version = "0.8.1"
description = "Storage backend for Raphtory"
edition.workspace = true
rust-version.workspace = true
version.workspace = true
keywords.workspace = true
authors.workspace = true
documentation.workspace = true
repository.workspace = true
license.workspace = true
readme.workspace = true
homepage.workspace = true
1 change: 1 addition & 0 deletions raphtory-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "raphtory-api"
description = "Raphtory common interface and APIs"
version.workspace = true
documentation.workspace = true
repository.workspace = true
Expand Down

0 comments on commit 57413cf

Please sign in to comment.