From a7d38612466286858912a39f36abda979cf3d502 Mon Sep 17 00:00:00 2001 From: 4t145 Date: Wed, 26 Jun 2024 16:07:45 +0800 Subject: [PATCH] pump up s3 version add cicd dry run --- .github/workflows/cicd.yml | 17 +++++++++++++++++ tardis/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index c41cd30..38b9c58 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -85,6 +85,23 @@ jobs: run: cargo test --all-features env: RUSTFLAGS: --cfg tokio_unstable + + - name: Cargo package tardis + working-directory: tardis + run: cargo package + + - name: Cargo publish tardis + working-directory: tardis + run: cargo publish --dry-run + + - name: Cargo package macros + working-directory: tardis-macros + run: cargo package + + - name: Cargo publish macros + working-directory: tardis-macros + run: cargo publish --dry-run + - name: Upload to codecov.io uses: codecov/codecov-action@v2 with: diff --git a/tardis/Cargo.toml b/tardis/Cargo.toml index 52306cd..bb9309e 100644 --- a/tardis/Cargo.toml +++ b/tardis/Cargo.toml @@ -219,7 +219,7 @@ lettre = { version = "0.11", features = [ # Object Storage # rust-s3 = { version = "0.33", optional = true } -rust-s3 = { git = "https://github.com/tuist/rust-s3.git", rev = "55f2947", optional = true } +rust-s3 = { version = "0.34", optional = true } # rust-s3 = { path = "../../rust-s3/s3", optional = true } anyhow = { version = "1.0", optional = true }