Update ci.yml
This commit is contained in:
parent
f09e0a83c1
commit
571e0c4e8e
|
@ -26,6 +26,7 @@ jobs:
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
|
id: cocoapods-cache
|
||||||
with:
|
with:
|
||||||
path: Pods
|
path: Pods
|
||||||
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
|
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
|
||||||
|
@ -33,6 +34,7 @@ jobs:
|
||||||
${{ runner.os }}-pods-
|
${{ runner.os }}-pods-
|
||||||
|
|
||||||
- name: Install pods
|
- name: Install pods
|
||||||
|
if: steps.cocoapods-cache.outputs.cache-hit != 'true'
|
||||||
run: pod install
|
run: pod install
|
||||||
|
|
||||||
- name: Cache Swift packages
|
- name: Cache Swift packages
|
||||||
|
@ -51,7 +53,7 @@ jobs:
|
||||||
|
|
||||||
- name: xcodebuild!
|
- name: xcodebuild!
|
||||||
run: |
|
run: |
|
||||||
xcodebuild build -project "JellyfinPlayer.xcodeproj" \
|
xcodebuild build -workspace "JellyfinPlayer.xcworkspace" \
|
||||||
-scheme "${{ matrix.scheme }}" \
|
-scheme "${{ matrix.scheme }}" \
|
||||||
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
|
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue