Skip to content

Commit c8cbdbf

Browse files
committed
fix ci: dep publish already-exists is non-fatal
1 parent 7d236b2 commit c8cbdbf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ jobs:
6767
- name: Publish quanttide-agent
6868
run: |
6969
cd /home/runner/work/packages/quanttide-agent-toolkit/packages/rust
70-
cargo publish --allow-dirty --token ${{ secrets.CRATES_API_TOKEN }}
70+
cargo publish --allow-dirty --token ${{ secrets.CRATES_API_TOKEN }} 2>&1 || true
7171
7272
- name: Publish quanttide-data-core
7373
run: |
7474
cd /home/runner/work/packages/quanttide-data-toolkit/packages/rust
75-
cargo publish --allow-dirty --token ${{ secrets.CRATES_API_TOKEN }}
75+
cargo publish --allow-dirty --token ${{ secrets.CRATES_API_TOKEN }} 2>&1 || true
7676
7777
- name: Switch deps to crates.io versions
7878
run: |

src/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qtcloud-data-cli"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
edition = "2024"
55
authors = ["QuantTide Inc. <opensource@quanttide.com>"]
66
description = "量潮数据云 CLI"

0 commit comments

Comments
 (0)