File tree Expand file tree Collapse file tree 3 files changed +33
-2
lines changed Expand file tree Collapse file tree 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"
4949path = " ../line_manage_audience"
5050
5151[dependencies .line_messaging_api ]
52- version = " 0.0.2 "
52+ version = " 0.0.3 "
5353path = " ../line_messaging_api"
5454
5555[dependencies .line_module ]
Original file line number Diff line number Diff line change 11[package ]
22name = " line_messaging_api"
3- version = " 0.0.2 "
3+ version = " 0.0.3 "
44authors = [" OpenAPI Generator team and contributors" ]
55description = " This document describes LINE Messaging API."
66# Override this license by providing a License Object in the OpenAPI.
You can’t perform that action at this time.
0 commit comments