Skip to content

Commit b3171a9

Browse files
authored
rust(build): Fix release job file path (#364)
1 parent b3c52b5 commit b3171a9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/rust_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
- name: Install stable toolchain
2929
uses: dtolnay/rust-toolchain@stable
3030
- name: Publish crates
31-
run: cargo publish --workspace --exclude sift-stream-bindings --exclude sift_cli --manifest-path ./rust/Cargo.toml --locked --token ${CARGO_REGISTRY_TOKEN}
31+
run: cargo publish --workspace --exclude sift-stream-bindings --exclude sift_cli --manifest-path ./Cargo.toml --locked --token ${CARGO_REGISTRY_TOKEN}
3232
env:
3333
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

.github/workflows/rust_release_dry_run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
- name: Install stable toolchain
2929
uses: dtolnay/rust-toolchain@stable
3030
- name: Publish crates (dry run)
31-
run: cargo publish --workspace --exclude sift-stream-bindings --exclude sift_cli --manifest-path ./rust/Cargo.toml --locked --dry-run
31+
run: cargo publish --workspace --exclude sift-stream-bindings --exclude sift_cli --manifest-path ./Cargo.toml --locked --dry-run

0 commit comments

Comments
 (0)