Release and Update SDK Version #126
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: Release and Update SDK Version | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'The new version to release, ex: 0.12.0' | |
| required: true | |
| type: string | |
| emergency: | |
| type: boolean | |
| description: Ignore main branch requirement (SOC2 compliance) | |
| required: true | |
| jobs: | |
| gh-release: | |
| permissions: | |
| contents: write | |
| uses: ./.github/workflows/release_gh.yaml | |
| with: | |
| version: ${{ inputs.version }} | |
| secrets: inherit | |
| public-release: | |
| permissions: | |
| id-token: write # required to use OIDC authentication | |
| contents: read | |
| uses: ./.github/workflows/release_public.yaml | |
| with: | |
| version: ${{ inputs.version }} | |
| emergency: ${{ inputs.emergency }} | |
| secrets: inherit | |
| needs: gh-release | |
| capture-ios-release: | |
| uses: ./.github/workflows/release_capture_ios.yaml | |
| with: | |
| version: ${{ inputs.version }} | |
| needs: public-release | |
| secrets: inherit | |
| capture-react-release: | |
| uses: ./.github/workflows/release_capture_react.yaml | |
| with: | |
| version: ${{ inputs.version }} | |
| needs: public-release | |
| secrets: inherit |