Skip to content

Publish Packages

Publish Packages #32

Workflow file for this run

name: Publish Packages
on:
release:
types: [published]
workflow_dispatch:
permissions:
id-token: write # Required for OIDC
contents: read
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 MobileWhipWhepClient.podspec --allow-warnings
pod lib lint MobileWhipWhepBroadcastClient.podspec --allow-warnings
pod trunk push MobileWhipWhepClient.podspec --allow-warnings
pod trunk push MobileWhipWhepBroadcastClient.podspec --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
publish-react-native-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
registry-url: "https://registry.npmjs.org"
- run: yarn
- run: yarn prepare:package
- run: npm publish --access public --provenance
working-directory: packages/react-native-client