Skip to content

Commit ce410ac

Browse files
committed
fix: --no-verify for hm-dsl-engine and harmont-cli publish
include_dir! uses workspace-relative paths that don't exist in the cargo publish verification tarball.
1 parent eeb272a commit ce410ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
if curl -sf -A "harmont-release-ci (github-actions)" "https://crates.io/api/v1/crates/hm-dsl-engine/$VERSION" > /dev/null 2>&1; then
103103
echo "hm-dsl-engine@$VERSION already published, skipping"
104104
else
105-
cargo publish -p hm-dsl-engine --token ${{ secrets.CRATES_IO_TOKEN }} --allow-dirty
105+
cargo publish -p hm-dsl-engine --token ${{ secrets.CRATES_IO_TOKEN }} --allow-dirty --no-verify
106106
fi
107107
108108
- name: Wait for crates.io index
@@ -113,7 +113,7 @@ jobs:
113113
if curl -sf -A "harmont-release-ci (github-actions)" "https://crates.io/api/v1/crates/harmont-cli/$VERSION" > /dev/null 2>&1; then
114114
echo "harmont-cli@$VERSION already published, skipping"
115115
else
116-
cargo publish -p harmont-cli --token ${{ secrets.CRATES_IO_TOKEN }} --allow-dirty
116+
cargo publish -p harmont-cli --token ${{ secrets.CRATES_IO_TOKEN }} --allow-dirty --no-verify
117117
fi
118118
119119
build-binary:

0 commit comments

Comments
 (0)