File tree 3 files changed +33
-2
lines changed
3 files changed +33
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : cargo publish
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ category :
7
+ description : ' Select submodules to publish'
8
+ required : true
9
+ type : choice
10
+ options :
11
+ - line_channel_access_token
12
+ - line_insight
13
+ - line_liff
14
+ - line_manage_audience
15
+ - line_messaging_api
16
+ - line_module_attach
17
+ - line_shop
18
+ - line_webhook
19
+
20
+ jobs :
21
+ build :
22
+ runs-on : ubuntu-latest
23
+
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+
27
+ - name : login
28
+ run : cargo login ${{ secrets.CARGO_TOKEN }}
29
+
30
+ - name : publish
31
+ run : cargo publish --manifest-path core/${{ inputs.category }}/Cargo.toml
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ version = "0.0.1"
49
49
path = " ../line_manage_audience"
50
50
51
51
[dependencies .line_messaging_api ]
52
- version = " 0.0.2 "
52
+ version = " 0.0.3 "
53
53
path = " ../line_messaging_api"
54
54
55
55
[dependencies .line_module ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " line_messaging_api"
3
- version = " 0.0.2 "
3
+ version = " 0.0.3 "
4
4
authors = [" OpenAPI Generator team and contributors" ]
5
5
description = " This document describes LINE Messaging API."
6
6
# Override this license by providing a License Object in the OpenAPI.
You can’t perform that action at this time.
0 commit comments