From 5a6009b919cf625796cd9e6323ae5f055dfcd443 Mon Sep 17 00:00:00 2001 From: driftluo Date: Mon, 2 Dec 2024 18:42:58 +0800 Subject: [PATCH] ci: ignore already publish error by cargo --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1b71a81f..b2eb70c3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ jobs: - name: Publish run: | cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }} - cd multiaddr && cargo publish - cd ../secio && cargo publish - cd ../yamux && cargo publish - cd ../tentacle && cargo publish + cd multiaddr && cargo publish || true + cd ../secio && cargo publish || true + cd ../yamux && cargo publish || true + cd ../tentacle && cargo publish || true