chore: bump version to 1.1.9 #59
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- uses: sersoft-gmbh/xcodebuild-action@v3 | |
with: | |
spm-package: "./" | |
scheme: CommandBarIOS | |
destination: platform=iOS Simulator,OS=16.2,name=iPhone 14 | |
action: build | |
# - name: Switch XCode Version | |
# run: sudo xcode-select -s /Applications/Xcode.app | |
# - name: Install Dependences | |
# run: | | |
# cd Example | |
# pod repo update | |
# pod install | |
# shell: bash | |
# - name: Test and Lint | |
# uses: ty0x2333/cocoapods-action@master | |
# with: | |
# additional_build_params: -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.2' | |
# additional_lint_params: --private |