diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b49fda79..e6cc56cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,26 +8,26 @@ jobs: SPM: name: "Build SPM" environment: Tag - runs-on: macOS-12 + runs-on: macos-latest strategy: fail-fast: false matrix: include: - - destination: "OS=16.2,name=iPhone 14 Pro" + - destination: "OS=17.2,name=iPhone 15" name: "iOS" scheme: "PlayKit-Package" - - destination: "OS=16.0,name=Apple TV" + - destination: "OS=17.2,name=Apple TV" name: "tvOS" scheme: "PlayKit-Package" steps: - uses: actions/checkout@v3 - name: ${{ matrix.name }} - run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean test | xcpretty + run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild docbuild -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean test | xcpretty TAGGING: name: "Add Git Tag" - runs-on: macOS-12 + runs-on: macos-latest environment: Tag needs: SPM @@ -48,7 +48,7 @@ jobs: PODS_PUSH: name: "CocoaPods push" - runs-on: macOS-12 + runs-on: macos-latest environment: CocoaPods needs: TAGGING