File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -13,26 +13,19 @@ jobs:
13
13
14
14
steps :
15
15
- name : Checkout Repository
16
- uses : actions/checkout@master
16
+ uses : actions/checkout@v4
17
17
18
18
- name : Install Rust toolchain
19
- uses : actions-rs/toolchain@v1
20
- with :
21
- profile : minimal
22
- toolchain : stable
23
- override : true
19
+ run : |
20
+ rustup set profile minimal
21
+ rustup update --no-self-update stable
22
+ rustup default stable
24
23
25
24
- name : Cargo Login
26
- uses : actions-rs/cargo@v1
27
- with :
28
- command : login
29
- args : -- ${{ secrets.CARGO_TOKEN }}
25
+ run : cargo login ${{ secrets.CARGO_TOKEN }}
30
26
31
27
- name : Cargo Publish
32
- uses : actions-rs/cargo@v1
33
- with :
34
- command : publish
35
- args : --no-verify
28
+ run : cargo publish
36
29
37
30
- name : GitHub Release
38
31
id : create_release
You can’t perform that action at this time.
0 commit comments