Skip to content

Commit 53a3ec3

Browse files
authored
Update Messaging API module version (#54)
1 parent 779711a commit 53a3ec3

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

core/lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ version = "0.0.1"
4949
path = "../line_manage_audience"
5050

5151
[dependencies.line_messaging_api]
52-
version = "0.0.2"
52+
version = "0.0.3"
5353
path = "../line_messaging_api"
5454

5555
[dependencies.line_module]

core/line_messaging_api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "line_messaging_api"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["OpenAPI Generator team and contributors"]
55
description = "This document describes LINE Messaging API."
66
# Override this license by providing a License Object in the OpenAPI.

0 commit comments

Comments
 (0)