Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Messaging API module version #54

Merged
merged 3 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/publish-submodule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: cargo publish

on:
workflow_dispatch:
inputs:
category:
description: 'Select submodules to publish'
required: true
type: choice
options:
- line_channel_access_token
- line_insight
- line_liff
- line_manage_audience
- line_messaging_api
- line_module_attach
- line_shop
- line_webhook

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: login
run: cargo login ${{ secrets.CARGO_TOKEN }}

- name: publish
run: cargo publish --manifest-path core/${{ inputs.category }}/Cargo.toml
2 changes: 1 addition & 1 deletion core/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ version = "0.0.1"
path = "../line_manage_audience"

[dependencies.line_messaging_api]
version = "0.0.2"
version = "0.0.3"
path = "../line_messaging_api"

[dependencies.line_module]
Expand Down
2 changes: 1 addition & 1 deletion core/line_messaging_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "line_messaging_api"
version = "0.0.2"
version = "0.0.3"
authors = ["OpenAPI Generator team and contributors"]
description = "This document describes LINE Messaging API."
# Override this license by providing a License Object in the OpenAPI.
Expand Down
Loading