We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02a387 commit bb0d984Copy full SHA for bb0d984
1 file changed
.github/workflows/release.yml
@@ -160,7 +160,10 @@ jobs:
160
echo " $crate@$VERSION already published — skipping"
161
else
162
echo " Publishing $crate@$VERSION..."
163
- cargo publish -p "$crate" --allow-dirty
+ # --no-verify: skip the local verify build, which re-resolves
164
+ # dependencies without the workspace [patch.crates-io] and fails
165
+ # on the yanked core2 0.4.0 pulled transitively by jieba-rs.
166
+ cargo publish -p "$crate" --allow-dirty --no-verify
167
need_wait+=("$crate:$VERSION")
168
fi
169
done
0 commit comments