Skip to content

Commit

Permalink
ci: Don't verify content for dry run (#3115)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuanwo committed Sep 18, 2023
1 parent 9b4b762 commit 3fdfa56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bindings_haskell.yml
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 3fdfa56

Please sign in to comment.