FIX: Don not fail cargo publish if versions are the same

This commit is contained in:
Nicolás Hatcher
2024-02-18 23:02:19 +01:00
parent 7809ab556b
commit 3a5ef8a0fc

View File

@@ -15,10 +15,10 @@ jobs:
- name: Update Rust
run: rustup update stable
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN} --manifest-path base/Cargo.toml
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN} --manifest-path base/Cargo.toml || true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN} --manifest-path xlsx/Cargo.toml
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN} --manifest-path xlsx/Cargo.toml || true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}