Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: release config #449

Merged
merged 3 commits into from
Jun 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Build DevApp
run: |
xcodebuild -scheme DevApp -configuration Debug -destination "platform=iOS Simulator,OS=13.2.1,name=iPhone 8" build | xcpretty
xcodebuild -scheme DevApp -configuration Debug -destination "platform=iOS Simulator,OS=16.2,name=iPhone 8" build | xcpretty

build_swift_sample:
runs-on: macos-latest
Expand All @@ -62,7 +62,7 @@ jobs:
run: |
xcodebuild -workspace samples/SwiftDemoApp/SwiftDemoApp.xcworkspace \
-scheme SwiftDemoApp -configuration Debug \
-destination "platform=iOS Simulator,OS=13.2.1,name=iPhone 8" build | xcpretty
-destination "platform=iOS Simulator,OS=16.2,name=iPhone 8" build | xcpretty

build_objc_sample:
runs-on: macos-latest
Expand All @@ -82,10 +82,13 @@ jobs:
run: |
xcodebuild -workspace samples/ObjCDemoApp/ObjCDemoApp.xcworkspace \
-scheme ObjCDemoApp -configuration Debug \
-destination "platform=iOS Simulator,OS=13.2.1,name=iPhone 8" build | xcpretty
-destination "platform=iOS Simulator,OS=16.2,name=iPhone 8" build | xcpretty

test: # used as required status check
runs-on: ubuntu-latest
continue-on-error: false
strategy:
fail-fast: true
needs:
- build_dev_app
- build_swift_sample
Expand Down
1 change: 1 addition & 0 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ plugins:
- "./Google-Maps-iOS-Utils.podspec"
- "./GoogleMapsUtils.xcodeproj/project.pbxproj"
- "*.md"
- "Podfile.template"
- "Package.swift"
- - "@semantic-release/github"
- assets:
Expand Down