File tree Expand file tree Collapse file tree 5 files changed +110
-0
lines changed Expand file tree Collapse file tree 5 files changed +110
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ tags :
4
+ - ' erasable@*'
5
+
6
+ jobs :
7
+ publish :
8
+ name : Publish
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
13
+ - name : Install stable
14
+ uses : actions-rs/toolchain@v1
15
+ with :
16
+ profile : minimal
17
+ toolchain : stable
18
+ override : true
19
+ - name : Publish
20
+ run : cargo publish -p erasable
21
+ env :
22
+ CARGO_REGISTRY_TOKEN : ${{secrets.CRATES_IO_API_TOKEN}}
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ tags :
4
+ - ' ptr-union@*'
5
+
6
+ jobs :
7
+ publish :
8
+ name : Publish
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
13
+ - name : Install stable
14
+ uses : actions-rs/toolchain@v1
15
+ with :
16
+ profile : minimal
17
+ toolchain : stable
18
+ override : true
19
+ - name : Publish
20
+ run : cargo publish -p ptr-union
21
+ env :
22
+ CARGO_REGISTRY_TOKEN : ${{secrets.CRATES_IO_API_TOKEN}}
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ tags :
4
+ - ' rc-borrow@*'
5
+
6
+ jobs :
7
+ publish :
8
+ name : Publish
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
13
+ - name : Install stable
14
+ uses : actions-rs/toolchain@v1
15
+ with :
16
+ profile : minimal
17
+ toolchain : stable
18
+ override : true
19
+ - name : Publish
20
+ run : cargo publish -p rc-borrow
21
+ env :
22
+ CARGO_REGISTRY_TOKEN : ${{secrets.CRATES_IO_API_TOKEN}}
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ tags :
4
+ - ' rc-box@*'
5
+
6
+ jobs :
7
+ publish :
8
+ name : Publish
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
13
+ - name : Install stable
14
+ uses : actions-rs/toolchain@v1
15
+ with :
16
+ profile : minimal
17
+ toolchain : stable
18
+ override : true
19
+ - name : Publish
20
+ run : cargo publish -p rc-box
21
+ env :
22
+ CARGO_REGISTRY_TOKEN : ${{secrets.CRATES_IO_API_TOKEN}}
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ tags :
4
+ - ' slice-dst@*'
5
+
6
+ jobs :
7
+ publish :
8
+ name : Publish
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
13
+ - name : Install stable
14
+ uses : actions-rs/toolchain@v1
15
+ with :
16
+ profile : minimal
17
+ toolchain : stable
18
+ override : true
19
+ - name : Publish
20
+ run : cargo publish -p slice-dst
21
+ env :
22
+ CARGO_REGISTRY_TOKEN : ${{secrets.CRATES_IO_API_TOKEN}}
You can’t perform that action at this time.
0 commit comments