File tree Expand file tree Collapse file tree 2 files changed +12
-13
lines changed
Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,14 @@ permissions:
99
1010jobs :
1111 release :
12- runs-on : ubuntu-latest
13- include :
14- - rust : stable
15- steps :
16- - uses : actions/checkout@v4
17- - run : sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y
18- - name : Publish
19- run : |
20- cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
21- cd multiaddr && cargo publish --dry-run
22- cd secio && cargo publish --dry-run
23- cd yamux && cargo publish --dry-run
24- cd tentacle && cargo publish --dry-run
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v4
15+ - run : sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y
16+ - name : Publish
17+ run : |
18+ cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
19+ cd multiaddr && cargo publish
20+ cd ../secio && cargo publish
21+ cd ../yamux && cargo publish
22+ cd ../tentacle && cargo publish
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name = "tentacle-multiaddr"
33version = " 0.3.4"
44authors = [" driftluo <driftluo@foxmail.com>" ]
55edition = " 2021"
6+ repository = " https://github.com/nervosnetwork/tentacle"
67license = " MIT"
78description = " Mini Implementation of multiaddr"
89
You can’t perform that action at this time.
0 commit comments