Skip to content

Commit

Permalink
Fix cargo publish (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuka authored Aug 3, 2022
1 parent fdc3579 commit e6e3c32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit e6e3c32

Please sign in to comment.