From 571e0c4e8e3e9500bd97ba218565b6f3c2b4e1fe Mon Sep 17 00:00:00 2001 From: aiden vigue Date: Sun, 20 Jun 2021 22:48:48 -0400 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43e6d3d7..27706d59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,7 @@ jobs: uses: actions/checkout@v1 - uses: actions/cache@v2 + id: cocoapods-cache with: path: Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} @@ -33,6 +34,7 @@ jobs: ${{ runner.os }}-pods- - name: Install pods + if: steps.cocoapods-cache.outputs.cache-hit != 'true' run: pod install - name: Cache Swift packages @@ -51,7 +53,7 @@ jobs: - name: xcodebuild! run: | - xcodebuild build -project "JellyfinPlayer.xcodeproj" \ + xcodebuild build -workspace "JellyfinPlayer.xcworkspace" \ -scheme "${{ matrix.scheme }}" \ CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO