Skip to content

Commit

Permalink
Update CI for macOS 13
Browse files Browse the repository at this point in the history
  • Loading branch information
arielelkin authored Jul 29, 2024
1 parent d992b55 commit fc6a2b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
primary:
name: Primary
runs-on: macOS-11
runs-on: macOS-13
steps:
- uses: actions/checkout@v2

Expand All @@ -33,23 +33,23 @@ jobs:

spm:
name: Swift Package Manager
runs-on: macOS-11
runs-on: macOS-13
steps:
- uses: actions/checkout@v2
- name: Swift Build
run: swift build

cocoapods:
name: Cocoapods
runs-on: macOS-11
runs-on: macOS-13
steps:
- uses: actions/checkout@v2
- name: Lint Podspec
run: pod lib lint

xcframework:
name: XCFramework
runs-on: macOS-11
runs-on: macOS-13
steps:
- uses: actions/checkout@v2

Expand All @@ -64,7 +64,7 @@ jobs:

create-release:
name: Make release
runs-on: macOS-11
runs-on: macOS-13
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') # only if tag is pushed
needs: [primary, cocoapods, spm, xcframework]
steps:
Expand Down

0 comments on commit fc6a2b5

Please sign in to comment.