fix: webview was being added to the view hierarchy regardless of the #20
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: Prerelease | |
on: | |
push: | |
branches: | |
- "release/**" | |
jobs: | |
update-version: | |
runs-on: macos-14 | |
timeout-minutes: 30 | |
steps: | |
- run: sudo xcode-select --switch /Applications/Xcode_15.1.app | |
- uses: actions/checkout@v4 | |
- name: Install build dependencies | |
run: gem install cocoapods xcpretty fastlane | |
- name: Assign version to RELEASE_VERSION environment variable | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/*/}" >> $GITHUB_ENV | |
- name: Bump podspec version | |
run: fastlane run version_bump_podspec version_number:"${RELEASE_VERSION}" | |
- name: Validate Pod Lib # We're not doing a pod spec lint because the tag is not valid yet | |
run: pod lib lint | |
- name: Push version bump commit | |
uses: EndBug/add-and-commit@v9 |