Skip to content

Commit

Permalink
[WIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Oct 11, 2023
1 parent c02d631 commit 9aa0fc0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
path: |
~/.gradle/wrapper
~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('example/android/gradle/wrapper/gradle-wrapper.properties') }}
key: ${{ runner.os }}-gradle-false-${{ hashFiles('example/android/gradle/wrapper/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
${{ runner.os }}-gradle-false-
- name: Modify APP ID
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ jobs:
path: |
~/.gradle/wrapper
~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('example/android/gradle/wrapper/gradle-wrapper.properties') }}
key: ${{ runner.os }}-gradle-${{ matrix.newArch }}-${{ hashFiles('example/android/gradle/wrapper/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
${{ runner.os }}-gradle-${{ matrix.newArch }}-
- name: Install Detox dependencies
shell: bash
Expand Down
10 changes: 5 additions & 5 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"!example/android/app/build"
],
"outputs": [
"example/android/app/build/outputs/apk/release/app-release.apk"
"example/android/app/build/outputs/apk/*"
]
},
"build:ios": {
Expand All @@ -31,8 +31,8 @@
"!example/ios/Pods"
],
"outputs": [
"example/ios/AgoraRtcNgExample.ipa",
"example/ios/AgoraRtcNgExample.app.dSYM"
"example/ios/*.ipa",
"example/ios/*.app.dSYM"
]
},
"detox:android": {
Expand All @@ -49,7 +49,7 @@
"!example/android/app/build"
],
"outputs": [
"example/android/app/build/outputs/apk/release/app-release.apk"
"example/android/app/build/outputs/apk/**"
]
},
"detox:ios": {
Expand All @@ -65,7 +65,7 @@
"!example/ios/Pods"
],
"outputs": [
"example/ios/build/Build/Products/Release-iphonesimulator/AgoraRtcNgExample.app"
"example/ios/build/Build/Products/**"
]
}
}
Expand Down

0 comments on commit 9aa0fc0

Please sign in to comment.