Publish Package to CocoaPods #4
Workflow file for this run
This file contains 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 Package to CocoaPods | |
on: | |
release: | |
types: [published] | |
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 }} | |
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:package | |
- run: yarn npm publish --access public | |
working-directory: packages/react-native-client | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |