Skip to content

Commit

Permalink
Merge branch 'release/sora-ios-sdk-2023.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Sep 13, 2023
2 parents 016e3f3 + 4fe9d77 commit 9466cdf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ on:

jobs:
build:
runs-on: macos-12
runs-on: macos-13
env:
XCODE: /Applications/Xcode_14.0.app
XCODE_SDK: iphoneos16.0
XCODE: /Applications/Xcode_14.3.1.app
XCODE_SDK: iphoneos16.4
steps:
- uses: actions/checkout@v3
- name: Select Xcode Version
Expand Down Expand Up @@ -51,9 +51,10 @@ jobs:
CODE_SIGNING_ALLOWED=NO \
CODE_SIGN_IDENTITY= \
PROVISIONING_PROFILE=
- name: Check uncommitted unformatted code
run: |
./lint-format.sh
# SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする
#- name: Check uncommitted unformatted code
# run: |
# ./lint-format.sh
release:
if: contains(github.ref, 'tags/v')
needs: [build]
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@

## develop

## sora-ios-sdk-2023.3.0

- [UPDATE] SwiftLint, SwiftFormat/CLI を一時的にコメントアウトする
- SwiftLint, SwiftFormat/CLI が Swift Swift 5.9 に対応できていないため
- 対応が完了したら戻す
- @miosakuma

## sora-ios-sdk-2023.2.0

- [UPDATE] システム条件を変更する
Expand Down
7 changes: 4 additions & 3 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ platform :ios, '13.0'

target 'SoraQuickStart' do
use_frameworks!
pod 'Sora', '2023.2.0'
pod 'SwiftLint'
pod 'SwiftFormat/CLI'
pod 'Sora', '2023.3.0'
# SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする
# pod 'SwiftLint'
# pod 'SwiftFormat/CLI'

end

0 comments on commit 9466cdf

Please sign in to comment.