Skip to content

Commit

Permalink
Merge pull request #387 from nervosnetwork/ignore-already-publish-error
Browse files Browse the repository at this point in the history
ci: ignore already publish error by cargo
  • Loading branch information
driftluo authored Dec 2, 2024
2 parents 74a26f7 + 5a6009b commit 6e26063
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6e26063

Please sign in to comment.