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

Release 0.1.1 #28

Merged
merged 6 commits into from
Sep 27, 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
37 changes: 27 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,30 @@ jobs:
publish-pod:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Install Cocoapods
run: gem install cocoapods
- name: Deploy to Cocoapods
run: |
set -eo pipefail
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
- uses: actions/checkout@v1
- name: Install Cocoapods
run: gem install cocoapods
- name: Deploy to Cocoapods
run: |
set -eo pipefail
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
publish-react-native-client:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: yarn
- run: yarn prepare
- run: yarn npm publish --access public
working-directory: packages/react-native-client
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 6 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
nodeLinker: node-modules

npmScopes:
fishjam-cloud:
npmAlwaysAuth: true
npmAuthToken: "${NODE_AUTH_TOKEN-fallback}"
npmPublishRegistry: "https://registry.npmjs.org/"

yarnPath: .yarn/releases/yarn-4.4.1.cjs
2 changes: 1 addition & 1 deletion MobileWhipWhepClient.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MobileWhipWhepClient'
s.version = '0.1.0'
s.version = '0.1.1'
s.summary = 'WHIP/WHEP SDK for iOS.'

s.author = { 'Software Mansion' => 'https://swmansion.com' }
Expand Down
4 changes: 2 additions & 2 deletions packages/react-native-client/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'

group = 'com.swmansion.reactnativeclient'
version = '0.1.0'
version = '0.1.1'

def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
apply from: expoModulesCorePlugin
Expand Down Expand Up @@ -35,7 +35,7 @@ android {
namespace "com.swmansion.reactnativeclient"
defaultConfig {
versionCode 1
versionName "0.1.0"
versionName "0.1.1"
}
lintOptions {
abortOnError false
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-whip-whep",
"version": "0.1.0",
"version": "0.1.1",
"description": "An implementation of WHIP and WHEP protocols functionalities for React Native.",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down
Loading