Skip to content

Commit

Permalink
fix ios action and indents
Browse files Browse the repository at this point in the history
  • Loading branch information
NMGuner committed Jun 13, 2024
1 parent 7399a59 commit 98965e2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
16 changes: 8 additions & 8 deletions .github/actions/prepare-android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ runs:
using: composite
steps:
- name: Set up our JDK environment
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
cache-dependency-path: |
**/*.gradle*
**/gradle-wrapper.properties
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
cache-dependency-path: |
**/*.gradle*
**/gradle-wrapper.properties
- name: Finalize Android SDK
run: |
Expand Down
19 changes: 9 additions & 10 deletions .github/actions/prepare-ios/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ description: Prepare iOS environment
runs:
using: composite
steps:
- name: Cache Lib cocoapods
id: cocoapods-cache-lib
uses: actions/cache@v3
with:
path: |
ios/Pods
TestApp/ios/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-
- name: Cache Pods
uses: actions/cache@v4
with:
path: |
ios/Pods
TestApp/ios/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-

0 comments on commit 98965e2

Please sign in to comment.