File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release-plz
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+
8+ jobs :
9+ release-plz-release :
10+ name : Release-plz release
11+ runs-on : ubuntu-latest
12+ permissions :
13+ contents : write
14+ steps :
15+ - name : Checkout repository
16+ uses : actions/checkout@v4
17+ with :
18+ fetch-depth : 0
19+ token : ${{ secrets.RELEASE_PLZ_TOKEN }}
20+ - name : Install Rust toolchain
21+ uses : dtolnay/rust-toolchain@stable
22+ - name : Run release-plz
23+ uses : release-plz/action@v0.5
24+ with :
25+ command : release
26+ env :
27+ GITHUB_TOKEN : ${{ secrets.RELEASE_PLZ_TOKEN }}
28+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
29+
30+ release-plz-pr :
31+ name : Release-plz PR
32+ runs-on : ubuntu-latest
33+ permissions :
34+ pull-requests : write
35+ contents : write
36+ concurrency :
37+ group : release-plz-${{ github.ref }}
38+ cancel-in-progress : false
39+ steps :
40+ - name : Checkout repository
41+ uses : actions/checkout@v4
42+ with :
43+ fetch-depth : 0
44+ token : ${{ secrets.RELEASE_PLZ_TOKEN }}
45+ - name : Install Rust toolchain
46+ uses : dtolnay/rust-toolchain@stable
47+ - name : Run release-plz
48+ uses : release-plz/action@v0.5
49+ with :
50+ command : release-pr
51+ env :
52+ GITHUB_TOKEN : ${{ secrets.RELEASE_PLZ_TOKEN }}
53+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name = "yew-websocket"
33version = " 1.22.0"
44edition = " 2021"
55license = " MIT"
6+ publish = true
67description = " Rust yew websocket service written with love :)"
78repository = " https://github.com/security-union/yew-websocket.git"
89rust-version = " 1.84.0"
You can’t perform that action at this time.
0 commit comments