Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
continue-on-error: true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish chain
run: cargo publish --manifest-path chain/Cargo.toml
- name: Publish node
run: cargo publish --manifest-path node/Cargo.toml
continue-on-error: true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand All @@ -45,3 +45,8 @@ jobs:
continue-on-error: true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish deployer
run: cargo publish --manifest-path deployer/Cargo.toml
continue-on-error: true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ license = "MIT OR Apache-2.0"

[workspace.dependencies]
# Internal crates
battleware-client = { path = "client" }
battleware-node = { path = "node" }
battleware-execution = { path = "execution", default-features = false }
battleware-simulator = { path = "simulator" }
battleware-types = { path = "types" }
battleware-randotron = { path = "randotron" }
battleware-client = { version = "0.0.1", path = "client" }
battleware-node = { version = "0.0.1", path = "node" }
battleware-execution = { version = "0.0.1", path = "execution", default-features = false }
battleware-simulator = { version = "0.0.1", path = "simulator" }
battleware-types = { version = "0.0.1", path = "types" }
battleware-randotron = { version = "0.0.1", path = "randotron" }
battleware-deployer = { version = "0.0.1", path = "deployer" }

# Commonware dependencies
commonware-broadcast = { version = "0.0.62" }
Expand Down
Loading