Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/publish-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
run: cargo test --manifest-path packages/sdk-rust/Cargo.toml

- name: Cargo publish dry-run
run: cargo publish --manifest-path packages/sdk-rust/Cargo.toml --dry-run
run: cargo publish --manifest-path packages/sdk-rust/Cargo.toml --dry-run --allow-dirty

- name: Authenticate with crates.io
if: github.event.inputs.dry_run != 'true'
Expand All @@ -178,7 +178,7 @@ jobs:

- name: Publish to crates.io
if: github.event.inputs.dry_run != 'true'
run: cargo publish --manifest-path packages/sdk-rust/Cargo.toml
run: cargo publish --manifest-path packages/sdk-rust/Cargo.toml --allow-dirty
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}

Expand Down
Loading