Skip to content
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
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Continuous Integration for react-native-channel-io

on:
release:
types: [created]

permissions:
contents: read
id-token: write

concurrency:
group: react-native-channel-io-${{ github.head_ref || github.sha }}
cancel-in-progress: true

jobs:
deploy:
runs-on: ubuntu-latest
env:
TZ: "Asia/Seoul"
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v4
with:
# nvm rc 참고
node-version: 24.10.0
registry-url: 'https://registry.npmjs.org'

- name: build and deploy
run: npm publish --dry-run
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.12.0

## Update
* support android channel-io 13.0.0
* support iOS channel-io 13.0.1

# 0.11.12

## Update
Expand Down
4 changes: 2 additions & 2 deletions RNChannelIO.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RNChannelIO"
s.version = "0.5.5"
s.version = "0.6.0"
s.summary = "RNChannelIO"
s.description = "channel plugin for react native"
s.homepage = "https://channel.io"
Expand All @@ -15,6 +15,6 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '15.0'

s.dependency "React"
s.dependency "ChannelIOSDK", '12.14.1'
s.dependency "ChannelIOSDK", '13.0.1'

end
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ repositories {

dependencies {
implementation 'com.facebook.react:react-native'
api 'io.channel:plugin-android:12.15.0'
api 'io.channel:plugin-android:13.0.0'
}
15 changes: 13 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-channel-plugin",
"version": "0.11.12",
"version": "0.12.0",
"description": "react native module for channel io",
"main": "index.ts",
"scripts": {
Expand All @@ -15,5 +15,16 @@
"peerDependencies": {
"react-native": ">=0.60.0",
"react-native-firebase": ">=5.0.0"
}
},
"files": [
"android/src",
"android/build.gradle",
"ios",
"RNChannelIO.podspec",
"index.ts",
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json"
]
}