diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc2f270..5fbe78a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -151,7 +151,7 @@ jobs: echo "bayard ${BAYARD_VERSION} has already published" else pushd bayard - cargo publish --token ${{ secrets.CRATES_TOKEN }} + cargo publish --no-verify --token ${{ secrets.CRATES_TOKEN }} popd fi diff --git a/Makefile b/Makefile index fbfe2e3..6eca8f4 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ tag: publish: ifeq ($(shell curl -s -XGET https://crates.io/api/v1/crates/bayard | jq -r '.versions[].num' | grep $(BAYARD_VERSION)),) - (cd bayard && cargo package && cargo publish) + (cd bayard && cargo package --no-verify && cargo publish --no-verify) sleep 10 endif