Publish Packages #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |