Skip to content

Commit

Permalink
Update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanov91 committed Sep 27, 2024
1 parent d0eb677 commit 7265db7
Showing 1 changed file with 25 additions and 17 deletions.
42 changes: 25 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,30 @@ concurrency:
cancel-in-progress: true

jobs:
build-swiftpm:
name: Build SwiftPM
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm.yml@main
with:
package: "OversizeAppStoreServices"
secrets: inherit
build-swiftpm:
name: Build SwiftPM
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm.yml@main
strategy:
matrix:
destination:
- platform=iOS Simulator,name=iPhone 16,OS=18.0
- platform=watchOS Simulator,name=Apple Watch SE (40mm) (2nd generation),OS=11.0
- platform=tvOS Simulator,name=Apple TV 4K (3rd generation) (at 1080p),OS=18.0
- platform=macOS,arch=arm64
with:
package: "OversizeAppStoreServices"
destination: ${{ matrix.destination }}
secrets: inherit

tests:
name: Test
needs: build-swiftpm
uses: oversizedev/GithubWorkflows/.github/workflows/test.yml@main
secrets: inherit
tests:
name: Test
needs: build-swiftpm
uses: oversizedev/GithubWorkflows/.github/workflows/test.yml@main
secrets: inherit

bump:
name: Bump version
needs: tests
if: github.ref == 'refs/heads/main'
uses: oversizedev/GithubWorkflows/.github/workflows/bump.yml@main
secrets: inherit
bump:
name: Bump version
needs: tests
if: github.ref == 'refs/heads/main'
uses: oversizedev/GithubWorkflows/.github/workflows/bump.yml@main
secrets: inherit

0 comments on commit 7265db7

Please sign in to comment.