File tree Expand file tree Collapse file tree 2 files changed +28
-2
lines changed Expand file tree Collapse file tree 2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : [push, pull_request]
3
+
1
4
env :
2
5
RUSTFLAGS : " -Dwarnings"
3
6
RUSTDOCFLAGS : " -Dwarnings"
4
7
5
- name : CI
6
- on : [push, pull_request]
7
8
jobs :
8
9
test :
9
10
name : Test
Original file line number Diff line number Diff line change
1
+ name : Release-plz
2
+
3
+ permissions :
4
+ pull-requests : write
5
+ contents : write
6
+
7
+ on :
8
+ push : { branches: [master] }
9
+
10
+ jobs :
11
+ release-plz :
12
+ name : Release-plz
13
+ runs-on : ubuntu-24.04
14
+ steps :
15
+ - name : Checkout repository
16
+ uses : actions/checkout@v4
17
+ with :
18
+ fetch-depth : 0
19
+ - name : Install Rust (rustup)
20
+ run : rustup update nightly --no-self-update && rustup default nightly
21
+ - name : Run release-plz
22
+ uses : MarcoIeni/release-plz-action@v0.5
23
+ env :
24
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
You can’t perform that action at this time.
0 commit comments