This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch disable-dry-run
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git

commit 008d049def3c40f0ed8dfe2bb6a680e44978725e
Author: Xuanwo <[email protected]>
AuthorDate: Mon Sep 18 18:37:58 2023 +0800

    ci: Don't verify content for dry run
    
    Signed-off-by: Xuanwo <[email protected]>
---
 .github/workflows/bindings_haskell.yml | 2 +-
 .github/workflows/publish.yml          | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/bindings_haskell.yml 
b/.github/workflows/bindings_haskell.yml
index 507a900ee..acb105300 100644
--- a/.github/workflows/bindings_haskell.yml
+++ b/.github/workflows/bindings_haskell.yml
@@ -95,7 +95,7 @@ jobs:
       - name: Package
         working-directory: "bindings/haskell"
         run: |
-          cargo package --target-dir target
+          cargo package --no-verify --target-dir target
           cd target/package
           tar xf opendal-*.crate --strip-components=1
           cabal sdist
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 19476b38c..600f21132 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -47,7 +47,7 @@ jobs:
         working-directory: "core"
         run: |
           if [[ "${{ github.ref }}" == *rc* ]]; then
-            cargo publish --all-features --dry-run
+            cargo publish --all-features --dry-run --no-verify
           else
             cargo publish --all-features
           fi
@@ -59,7 +59,7 @@ jobs:
         working-directory: "integrations/object_store"
         run: |
           if [[ "${{ github.ref }}" == *rc* ]]; then
-            cargo publish --dry-run
+            cargo publish --dry-run --no-verify
           else
             cargo publish
           fi
@@ -71,7 +71,7 @@ jobs:
         working-directory: "bin/oli"
         run: |
           if [[ "${{ github.ref }}" == *rc* ]]; then
-            cargo publish --dry-run
+            cargo publish --dry-run --no-verify
           else
             cargo publish
           fi
@@ -83,7 +83,7 @@ jobs:
         working-directory: "bin/oay"
         run: |
           if [[ "${{ github.ref }}" == *rc* ]]; then
-            cargo publish --dry-run
+            cargo publish --dry-run --no-verify
           else
             cargo publish
           fi

Reply via email to