From e6e3c32ce0a233a7c494a6540619520b72bca6ec Mon Sep 17 00:00:00 2001 From: Minoru Osuka Date: Wed, 3 Aug 2022 15:31:11 +0900 Subject: [PATCH] Fix cargo publish (#156) --- .github/workflows/release.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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