Skip to content

Commit a1cc5ab

Browse files
committed
test: fix release action
1 parent bb06c4c commit a1cc5ab

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/release.yaml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ permissions:
99

1010
jobs:
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

multiaddr/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "tentacle-multiaddr"
33
version = "0.3.4"
44
authors = ["driftluo <driftluo@foxmail.com>"]
55
edition = "2021"
6+
repository = "https://github.com/nervosnetwork/tentacle"
67
license = "MIT"
78
description = "Mini Implementation of multiaddr"
89

0 commit comments

Comments
 (0)